How to add footnote from the frame title in beamer?
I have a Beamer document, and I want to add a footnote, where the number that corresponds to the footnote is at the title of the frame. I have something like this, but it doesn't seem to work as the number two appears just under the title, not next to title:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)}footnotemark
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
beamer
add a comment |
I have a Beamer document, and I want to add a footnote, where the number that corresponds to the footnote is at the title of the frame. I have something like this, but it doesn't seem to work as the number two appears just under the title, not next to title:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)}footnotemark
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
beamer
add a comment |
I have a Beamer document, and I want to add a footnote, where the number that corresponds to the footnote is at the title of the frame. I have something like this, but it doesn't seem to work as the number two appears just under the title, not next to title:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)}footnotemark
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
beamer
I have a Beamer document, and I want to add a footnote, where the number that corresponds to the footnote is at the title of the frame. I have something like this, but it doesn't seem to work as the number two appears just under the title, not next to title:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)}footnotemark
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
beamer
beamer
edited Jun 12 '17 at 19:15
pixel
asked Jun 12 '17 at 18:48
pixelpixel
410412
410412
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You already did the hard work by figuring out that in the frametitle, one need the combination of footnotemark and footnotetext.
Simply add the footnotemark inside the frametitle:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)footnotemark}
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
add a comment |
This way works properly when there are more than one footnote:
documentclass{beamer}
begin{document}
begin{frame}{The first footnote here%
setcounter{footnote}{0}footnotemark}
stepcounter{footnote}
footnotetext{First}
And the second therefootnote{Second}.
end{frame}
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%2f374618%2fhow-to-add-footnote-from-the-frame-title-in-beamer%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You already did the hard work by figuring out that in the frametitle, one need the combination of footnotemark and footnotetext.
Simply add the footnotemark inside the frametitle:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)footnotemark}
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
add a comment |
You already did the hard work by figuring out that in the frametitle, one need the combination of footnotemark and footnotetext.
Simply add the footnotemark inside the frametitle:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)footnotemark}
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
add a comment |
You already did the hard work by figuring out that in the frametitle, one need the combination of footnotemark and footnotetext.
Simply add the footnotemark inside the frametitle:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)footnotemark}
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
You already did the hard work by figuring out that in the frametitle, one need the combination of footnotemark and footnotetext.
Simply add the footnotemark inside the frametitle:
documentclass{beamer}
begin{document}
begin{frame}{Test (work in progress)footnotemark}
footnotetext[2]{test}
begin{itemize}
item Item1
item Item2
end{itemize}
end{frame}
end{document}
edited Jun 12 '17 at 19:40
answered Jun 12 '17 at 19:38
samcartersamcarter
1
1
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
add a comment |
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
1
1
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
@pixel You're welcome! Your code was already sooooo close to working :)
– samcarter
Jun 12 '17 at 19:42
add a comment |
This way works properly when there are more than one footnote:
documentclass{beamer}
begin{document}
begin{frame}{The first footnote here%
setcounter{footnote}{0}footnotemark}
stepcounter{footnote}
footnotetext{First}
And the second therefootnote{Second}.
end{frame}
end{document}
add a comment |
This way works properly when there are more than one footnote:
documentclass{beamer}
begin{document}
begin{frame}{The first footnote here%
setcounter{footnote}{0}footnotemark}
stepcounter{footnote}
footnotetext{First}
And the second therefootnote{Second}.
end{frame}
end{document}
add a comment |
This way works properly when there are more than one footnote:
documentclass{beamer}
begin{document}
begin{frame}{The first footnote here%
setcounter{footnote}{0}footnotemark}
stepcounter{footnote}
footnotetext{First}
And the second therefootnote{Second}.
end{frame}
end{document}
This way works properly when there are more than one footnote:
documentclass{beamer}
begin{document}
begin{frame}{The first footnote here%
setcounter{footnote}{0}footnotemark}
stepcounter{footnote}
footnotetext{First}
And the second therefootnote{Second}.
end{frame}
end{document}
answered 15 mins ago
AntoniusAntonius
334
334
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%2f374618%2fhow-to-add-footnote-from-the-frame-title-in-beamer%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