Quotes after a chapter begins












0















In the following code, I would like to modify the output so that it doesn't show an underline between the quote and the author of the quote.



documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}

...

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}


I chose the epigraph package because it's the only one that allows me to place a quote after a chapter begins.If there are other suggestions, I'm looking forward to. Thank you.










share|improve this question























  • Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

    – Stefan Pinnow
    Jan 7 at 14:05
















0















In the following code, I would like to modify the output so that it doesn't show an underline between the quote and the author of the quote.



documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}

...

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}


I chose the epigraph package because it's the only one that allows me to place a quote after a chapter begins.If there are other suggestions, I'm looking forward to. Thank you.










share|improve this question























  • Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

    – Stefan Pinnow
    Jan 7 at 14:05














0












0








0








In the following code, I would like to modify the output so that it doesn't show an underline between the quote and the author of the quote.



documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}

...

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}


I chose the epigraph package because it's the only one that allows me to place a quote after a chapter begins.If there are other suggestions, I'm looking forward to. Thank you.










share|improve this question














In the following code, I would like to modify the output so that it doesn't show an underline between the quote and the author of the quote.



documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}

...

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}


I chose the epigraph package because it's the only one that allows me to place a quote after a chapter begins.If there are other suggestions, I'm looking forward to. Thank you.







quotation






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 7 at 13:50









AvocadoAvocado

103




103













  • Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

    – Stefan Pinnow
    Jan 7 at 14:05



















  • Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

    – Stefan Pinnow
    Jan 7 at 14:05

















Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

– Stefan Pinnow
Jan 7 at 14:05





Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with documentclass{...}, the required usepackage's, begin{document}, and end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.

– Stefan Pinnow
Jan 7 at 14:05










1 Answer
1






active

oldest

votes


















1














documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}
setlength{epigraphrule}{0pt}
begin{document}

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}
end{document}





share|improve this answer
























  • thanks, how do I set a right margin to my epigraph?

    – Avocado
    Jan 7 at 17:23











  • @Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

    – Peter Wilson
    Jan 7 at 18:47











  • @PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

    – Avocado
    Jan 7 at 19:45











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f468965%2fquotes-after-a-chapter-begins%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}
setlength{epigraphrule}{0pt}
begin{document}

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}
end{document}





share|improve this answer
























  • thanks, how do I set a right margin to my epigraph?

    – Avocado
    Jan 7 at 17:23











  • @Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

    – Peter Wilson
    Jan 7 at 18:47











  • @PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

    – Avocado
    Jan 7 at 19:45
















1














documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}
setlength{epigraphrule}{0pt}
begin{document}

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}
end{document}





share|improve this answer
























  • thanks, how do I set a right margin to my epigraph?

    – Avocado
    Jan 7 at 17:23











  • @Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

    – Peter Wilson
    Jan 7 at 18:47











  • @PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

    – Avocado
    Jan 7 at 19:45














1












1








1







documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}
setlength{epigraphrule}{0pt}
begin{document}

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}
end{document}





share|improve this answer













documentclass{book}
usepackage[utf8]{inputenc}

usepackage{epigraph}
setlength{epigraphrule}{0pt}
begin{document}

chapter{Something}

epigraph{All human things are subject to decay, and when fate
summons, Monarchs must obey}{textit{Mac Flecknoe \ John Dryden}}
end{document}






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 7 at 14:01









Ulrike FischerUlrike Fischer

188k7293673




188k7293673













  • thanks, how do I set a right margin to my epigraph?

    – Avocado
    Jan 7 at 17:23











  • @Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

    – Peter Wilson
    Jan 7 at 18:47











  • @PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

    – Avocado
    Jan 7 at 19:45



















  • thanks, how do I set a right margin to my epigraph?

    – Avocado
    Jan 7 at 17:23











  • @Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

    – Peter Wilson
    Jan 7 at 18:47











  • @PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

    – Avocado
    Jan 7 at 19:45

















thanks, how do I set a right margin to my epigraph?

– Avocado
Jan 7 at 17:23





thanks, how do I set a right margin to my epigraph?

– Avocado
Jan 7 at 17:23













@Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

– Peter Wilson
Jan 7 at 18:47





@Avocado What do you mean by right margin? Perhaps you should ask another question about that with a diagram showing what you are after.

– Peter Wilson
Jan 7 at 18:47













@PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

– Avocado
Jan 7 at 19:45





@PeterWilson as in having the quote and it's author moved from the left towards the center by a couple inches.

– Avocado
Jan 7 at 19:45


















draft saved

draft discarded




















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f468965%2fquotes-after-a-chapter-begins%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

How to change which sound is reproduced for terminal bell?

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents