Is there a way to move all footnotes to the end of the document?
Is there a way to move all footnotes to the end of the document (after the thebibliography environment)?
footnotes endnotes
add a comment |
Is there a way to move all footnotes to the end of the document (after the thebibliography environment)?
footnotes endnotes
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15
add a comment |
Is there a way to move all footnotes to the end of the document (after the thebibliography environment)?
footnotes endnotes
Is there a way to move all footnotes to the end of the document (after the thebibliography environment)?
footnotes endnotes
footnotes endnotes
edited May 22 '13 at 7:44
lockstep
190k52587719
190k52587719
asked May 16 '12 at 22:06
Vahid DamanafshanVahid Damanafshan
3,18832652
3,18832652
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15
add a comment |
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15
add a comment |
3 Answers
3
active
oldest
votes
You can use the endnotes package:
documentclass{article}
usepackage{endnotes}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
newpage
theendnotes
end{document}
To add a horizontal rule below the "Notes" heading, you can redefine the enoteheading command; for example, to obtain a rule of width equal to 0.5textwidth you can add the following lines to the preamble (after loading endnotes):
makeatletter
defenoteheading{section*{notesname
@mkboth{MakeUppercase{notesname}}{MakeUppercase{notesname}}}%
mbox{}parvskip-2.3baselineskipnoindentrule{.5textwidth}{0.4pt}parvskipbaselineskip}
makeatother
Of course, feel free to change the vertical skips according to your needs.
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
Do you know the difference betweenendnotesandpagenote(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
You may use the pagenote package:
documentclass{report}
usepackage{pagenote}
makepagenote
renewcommand*{notedivision}{chapter*{notesname}}
letfootnotepagenote
begin{document}
chapter{First}
Some text.footnote{A footnote.}
begin{thebibliography}{9}
bibitem{A01} A bibitem.
end{thebibliography}
printnotes
end{document}
4
Do you know the difference betweenpagenotesandendnotes(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
The endnotes package hasn't been updated since 2003 (at this writing), and doesn't work well with the KOMA-Script classes. The enotez package is more reliable and easier to customize:
documentclass{scrartcl}
usepackage{enotez}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
printendnotes
end{document}
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%2f56145%2fis-there-a-way-to-move-all-footnotes-to-the-end-of-the-document%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use the endnotes package:
documentclass{article}
usepackage{endnotes}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
newpage
theendnotes
end{document}
To add a horizontal rule below the "Notes" heading, you can redefine the enoteheading command; for example, to obtain a rule of width equal to 0.5textwidth you can add the following lines to the preamble (after loading endnotes):
makeatletter
defenoteheading{section*{notesname
@mkboth{MakeUppercase{notesname}}{MakeUppercase{notesname}}}%
mbox{}parvskip-2.3baselineskipnoindentrule{.5textwidth}{0.4pt}parvskipbaselineskip}
makeatother
Of course, feel free to change the vertical skips according to your needs.
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
Do you know the difference betweenendnotesandpagenote(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
You can use the endnotes package:
documentclass{article}
usepackage{endnotes}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
newpage
theendnotes
end{document}
To add a horizontal rule below the "Notes" heading, you can redefine the enoteheading command; for example, to obtain a rule of width equal to 0.5textwidth you can add the following lines to the preamble (after loading endnotes):
makeatletter
defenoteheading{section*{notesname
@mkboth{MakeUppercase{notesname}}{MakeUppercase{notesname}}}%
mbox{}parvskip-2.3baselineskipnoindentrule{.5textwidth}{0.4pt}parvskipbaselineskip}
makeatother
Of course, feel free to change the vertical skips according to your needs.
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
Do you know the difference betweenendnotesandpagenote(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
You can use the endnotes package:
documentclass{article}
usepackage{endnotes}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
newpage
theendnotes
end{document}
To add a horizontal rule below the "Notes" heading, you can redefine the enoteheading command; for example, to obtain a rule of width equal to 0.5textwidth you can add the following lines to the preamble (after loading endnotes):
makeatletter
defenoteheading{section*{notesname
@mkboth{MakeUppercase{notesname}}{MakeUppercase{notesname}}}%
mbox{}parvskip-2.3baselineskipnoindentrule{.5textwidth}{0.4pt}parvskipbaselineskip}
makeatother
Of course, feel free to change the vertical skips according to your needs.
You can use the endnotes package:
documentclass{article}
usepackage{endnotes}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
newpage
theendnotes
end{document}
To add a horizontal rule below the "Notes" heading, you can redefine the enoteheading command; for example, to obtain a rule of width equal to 0.5textwidth you can add the following lines to the preamble (after loading endnotes):
makeatletter
defenoteheading{section*{notesname
@mkboth{MakeUppercase{notesname}}{MakeUppercase{notesname}}}%
mbox{}parvskip-2.3baselineskipnoindentrule{.5textwidth}{0.4pt}parvskipbaselineskip}
makeatother
Of course, feel free to change the vertical skips according to your needs.
edited May 22 '13 at 7:44
lockstep
190k52587719
190k52587719
answered May 16 '12 at 22:12
Gonzalo MedinaGonzalo Medina
397k4113021571
397k4113021571
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
Do you know the difference betweenendnotesandpagenote(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
Do you know the difference betweenendnotesandpagenote(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
Thanks Gonzalo, but how can I add a line below the "Notes"?
– Vahid Damanafshan
May 16 '12 at 22:42
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
@VahidDamanafshan a line of width rqual to the whole textwidth or just undelining the word "Notes"?
– Gonzalo Medina
May 16 '12 at 22:50
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
0.5/textwidth please.
– Vahid Damanafshan
May 16 '12 at 22:56
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
@VahidDamanafshan: please see my updated answer.
– Gonzalo Medina
May 16 '12 at 23:00
1
1
Do you know the difference between
endnotes and pagenote (from the other answer)?– Gregor
Aug 1 '13 at 22:03
Do you know the difference between
endnotes and pagenote (from the other answer)?– Gregor
Aug 1 '13 at 22:03
add a comment |
You may use the pagenote package:
documentclass{report}
usepackage{pagenote}
makepagenote
renewcommand*{notedivision}{chapter*{notesname}}
letfootnotepagenote
begin{document}
chapter{First}
Some text.footnote{A footnote.}
begin{thebibliography}{9}
bibitem{A01} A bibitem.
end{thebibliography}
printnotes
end{document}
4
Do you know the difference betweenpagenotesandendnotes(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
You may use the pagenote package:
documentclass{report}
usepackage{pagenote}
makepagenote
renewcommand*{notedivision}{chapter*{notesname}}
letfootnotepagenote
begin{document}
chapter{First}
Some text.footnote{A footnote.}
begin{thebibliography}{9}
bibitem{A01} A bibitem.
end{thebibliography}
printnotes
end{document}
4
Do you know the difference betweenpagenotesandendnotes(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
You may use the pagenote package:
documentclass{report}
usepackage{pagenote}
makepagenote
renewcommand*{notedivision}{chapter*{notesname}}
letfootnotepagenote
begin{document}
chapter{First}
Some text.footnote{A footnote.}
begin{thebibliography}{9}
bibitem{A01} A bibitem.
end{thebibliography}
printnotes
end{document}
You may use the pagenote package:
documentclass{report}
usepackage{pagenote}
makepagenote
renewcommand*{notedivision}{chapter*{notesname}}
letfootnotepagenote
begin{document}
chapter{First}
Some text.footnote{A footnote.}
begin{thebibliography}{9}
bibitem{A01} A bibitem.
end{thebibliography}
printnotes
end{document}
answered May 16 '12 at 22:19
locksteplockstep
190k52587719
190k52587719
4
Do you know the difference betweenpagenotesandendnotes(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
add a comment |
4
Do you know the difference betweenpagenotesandendnotes(from the other answer)?
– Gregor
Aug 1 '13 at 22:03
4
4
Do you know the difference between
pagenotes and endnotes (from the other answer)?– Gregor
Aug 1 '13 at 22:03
Do you know the difference between
pagenotes and endnotes (from the other answer)?– Gregor
Aug 1 '13 at 22:03
add a comment |
The endnotes package hasn't been updated since 2003 (at this writing), and doesn't work well with the KOMA-Script classes. The enotez package is more reliable and easier to customize:
documentclass{scrartcl}
usepackage{enotez}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
printendnotes
end{document}
add a comment |
The endnotes package hasn't been updated since 2003 (at this writing), and doesn't work well with the KOMA-Script classes. The enotez package is more reliable and easier to customize:
documentclass{scrartcl}
usepackage{enotez}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
printendnotes
end{document}
add a comment |
The endnotes package hasn't been updated since 2003 (at this writing), and doesn't work well with the KOMA-Script classes. The enotez package is more reliable and easier to customize:
documentclass{scrartcl}
usepackage{enotez}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
printendnotes
end{document}
The endnotes package hasn't been updated since 2003 (at this writing), and doesn't work well with the KOMA-Script classes. The enotez package is more reliable and easier to customize:
documentclass{scrartcl}
usepackage{enotez}
letfootnote=endnote
begin{document}
textfootnote{test footnote}
printendnotes
end{document}
answered Jan 17 at 15:55
Andrew DunningAndrew Dunning
558214
558214
add a comment |
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%2f56145%2fis-there-a-way-to-move-all-footnotes-to-the-end-of-the-document%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
And interesting counter-question here would be: why would you want to do that? I would like to suggest reading this in order to get a grip of what end- and footnotes are and when to prefer one over the other.
– rbaleksandar
Mar 20 '17 at 14:33
@rbaleksandar that link is dead, do you mind summarizing the point being made in the article? edit: found the content via internet archive
– ffledgling
Nov 30 '18 at 9:15