Quotes after a chapter begins
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
add a comment |
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
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
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
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
quotation
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 withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it withdocumentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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
add a comment |
1 Answer
1
active
oldest
votes
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}
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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}
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
add a comment |
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}
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
add a comment |
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}
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}
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
Welcome to TeX.SX! Please make your code compilable (if possible), or at least complete it with
documentclass{...}
, the requiredusepackage
's,begin{document}
, andend{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