Add same text at bottom of several pages
I'm working on my thesis document, and the university requires the following disclaimer be at the bottom of all pages of the Acknowledgments section.
Acknowledgements reflect the view of the author and are not endorsed by the committee members or the university.
I have attempted to add the following:
letthefootnoterelaxfootnote{Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.}
but this does not keep the footer on all pages of this section.
Is there any way to keep a running note such as this for a certain section?
footer
add a comment |
I'm working on my thesis document, and the university requires the following disclaimer be at the bottom of all pages of the Acknowledgments section.
Acknowledgements reflect the view of the author and are not endorsed by the committee members or the university.
I have attempted to add the following:
letthefootnoterelaxfootnote{Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.}
but this does not keep the footer on all pages of this section.
Is there any way to keep a running note such as this for a certain section?
footer
1
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06
add a comment |
I'm working on my thesis document, and the university requires the following disclaimer be at the bottom of all pages of the Acknowledgments section.
Acknowledgements reflect the view of the author and are not endorsed by the committee members or the university.
I have attempted to add the following:
letthefootnoterelaxfootnote{Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.}
but this does not keep the footer on all pages of this section.
Is there any way to keep a running note such as this for a certain section?
footer
I'm working on my thesis document, and the university requires the following disclaimer be at the bottom of all pages of the Acknowledgments section.
Acknowledgements reflect the view of the author and are not endorsed by the committee members or the university.
I have attempted to add the following:
letthefootnoterelaxfootnote{Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.}
but this does not keep the footer on all pages of this section.
Is there any way to keep a running note such as this for a certain section?
footer
footer
asked Jan 15 at 22:14
mitchutemitchute
61
61
1
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06
add a comment |
1
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06
1
1
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06
add a comment |
1 Answer
1
active
oldest
votes
Try this:
documentclass{article}
usepackage{fancyhdr}
pagestyle{fancy}
fancyhf{}
renewcommand{headrulewidth}{0pt}
renewcommand{footrulewidth}{1pt}
lfoot{thepage}
%rfoot{vspace{-.8cm}Footer\vspace{.24cm}
footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.
begin{document}
…
end{document}
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
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%2f470312%2fadd-same-text-at-bottom-of-several-pages%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
Try this:
documentclass{article}
usepackage{fancyhdr}
pagestyle{fancy}
fancyhf{}
renewcommand{headrulewidth}{0pt}
renewcommand{footrulewidth}{1pt}
lfoot{thepage}
%rfoot{vspace{-.8cm}Footer\vspace{.24cm}
footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.
begin{document}
…
end{document}
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
add a comment |
Try this:
documentclass{article}
usepackage{fancyhdr}
pagestyle{fancy}
fancyhf{}
renewcommand{headrulewidth}{0pt}
renewcommand{footrulewidth}{1pt}
lfoot{thepage}
%rfoot{vspace{-.8cm}Footer\vspace{.24cm}
footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.
begin{document}
…
end{document}
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
add a comment |
Try this:
documentclass{article}
usepackage{fancyhdr}
pagestyle{fancy}
fancyhf{}
renewcommand{headrulewidth}{0pt}
renewcommand{footrulewidth}{1pt}
lfoot{thepage}
%rfoot{vspace{-.8cm}Footer\vspace{.24cm}
footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.
begin{document}
…
end{document}
Try this:
documentclass{article}
usepackage{fancyhdr}
pagestyle{fancy}
fancyhf{}
renewcommand{headrulewidth}{0pt}
renewcommand{footrulewidth}{1pt}
lfoot{thepage}
%rfoot{vspace{-.8cm}Footer\vspace{.24cm}
footnotesize Acknowledgments reflect the views of the author and are not endorsed by committee members or the university.
begin{document}
…
end{document}
answered Jan 16 at 7:23
Jan ŠetinaJan Šetina
23115
23115
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
add a comment |
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Is this going to edit all footers or just the ones in that particular section? It looks to me like this changes the footers for the entire document.
– mitchute
Jan 18 at 15:24
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
Try this: tex.stackexchange.com/questions/91219/…
– Jan Šetina
Jan 19 at 9:13
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%2f470312%2fadd-same-text-at-bottom-of-several-pages%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
1
I would use a bottom float, either figure, table or create a new float type. Since counter bottomnumber=1 (default), you can add one for each page at the beginning. See tex.stackexchange.com/questions/469384/…
– John Kormylo
Jan 15 at 22:23
Thanks for your comment. I did add a simple table float that can be placed inline when needed. Hacky, but it works for now.
– mitchute
Jan 18 at 18:06