how can I move the footnote in the far left or adjust it
I am preparing a presentation, I know some people don't like figure to be used for presentation etc. however, it is what I know and it works for me so I keep it simple as I can manage it :-)
I want to move the footnote in the bottom of the page to the far left, is it possible to do that ?
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
beamer footnotes
add a comment |
I am preparing a presentation, I know some people don't like figure to be used for presentation etc. however, it is what I know and it works for me so I keep it simple as I can manage it :-)
I want to move the footnote in the bottom of the page to the far left, is it possible to do that ?
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
beamer footnotes
it really makes no sense to usefigure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box
– David Carlisle
Feb 28 at 22:16
add a comment |
I am preparing a presentation, I know some people don't like figure to be used for presentation etc. however, it is what I know and it works for me so I keep it simple as I can manage it :-)
I want to move the footnote in the bottom of the page to the far left, is it possible to do that ?
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
beamer footnotes
I am preparing a presentation, I know some people don't like figure to be used for presentation etc. however, it is what I know and it works for me so I keep it simple as I can manage it :-)
I want to move the footnote in the bottom of the page to the far left, is it possible to do that ?
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
beamer footnotes
beamer footnotes
edited Feb 28 at 22:15
Zarko
126k868165
126k868165
asked Feb 28 at 22:06
LearnerLearner
18828
18828
it really makes no sense to usefigure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box
– David Carlisle
Feb 28 at 22:16
add a comment |
it really makes no sense to usefigure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box
– David Carlisle
Feb 28 at 22:16
it really makes no sense to use
figure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box– David Carlisle
Feb 28 at 22:16
it really makes no sense to use
figure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box– David Carlisle
Feb 28 at 22:16
add a comment |
2 Answers
2
active
oldest
votes
with use suggestion in answers to question beamer-footnote:
documentclass[demo]{beamer}
usepackage[labelformat=empty]{caption}
usepackage{hanging}
setbeamertemplate{footnote}{%
hangpara{0.8em}{1}%
makebox[0.8em][l]{scriptsizeinsertfootnotemark}scriptsizeinsertfootnotetextpar%
}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesize
Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{%
href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
This figure comes from a very good photographerfootnote{Definition of figure (Entry 1 of 2) vspace{1.5ex}} % <---
end{frame}
end{document}
edit: it seams that default position of footnotes are bottom of frames (if a footnote
is outside minipage
or some box). for lifting them for some vertical space above frame bottom, you have two possibilities:
increase distances between footnotes with
addtobeamertemplate{footnote}{}{vspace{1.5ex}}
in the last
footnote
in the frame add on its end for examplevspace{1.5ex}
as is done in above mwe- i do not know, if exist solution which will automatically add some vertical space below last footnote in the frame, i.e, move footnotes above frame footer.
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
add a comment |
Here is a non-figure version. You should put captionof
inside a group or environment (it sets @captype
locally), so I used the center
environment. My first choice would normally be minipage, but it does footnotes internally.
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{center}
captionof{figure}{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{example-image}par
end{center}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
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%2f477227%2fhow-can-i-move-the-footnote-in-the-far-left-or-adjust-it%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
with use suggestion in answers to question beamer-footnote:
documentclass[demo]{beamer}
usepackage[labelformat=empty]{caption}
usepackage{hanging}
setbeamertemplate{footnote}{%
hangpara{0.8em}{1}%
makebox[0.8em][l]{scriptsizeinsertfootnotemark}scriptsizeinsertfootnotetextpar%
}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesize
Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{%
href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
This figure comes from a very good photographerfootnote{Definition of figure (Entry 1 of 2) vspace{1.5ex}} % <---
end{frame}
end{document}
edit: it seams that default position of footnotes are bottom of frames (if a footnote
is outside minipage
or some box). for lifting them for some vertical space above frame bottom, you have two possibilities:
increase distances between footnotes with
addtobeamertemplate{footnote}{}{vspace{1.5ex}}
in the last
footnote
in the frame add on its end for examplevspace{1.5ex}
as is done in above mwe- i do not know, if exist solution which will automatically add some vertical space below last footnote in the frame, i.e, move footnotes above frame footer.
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
add a comment |
with use suggestion in answers to question beamer-footnote:
documentclass[demo]{beamer}
usepackage[labelformat=empty]{caption}
usepackage{hanging}
setbeamertemplate{footnote}{%
hangpara{0.8em}{1}%
makebox[0.8em][l]{scriptsizeinsertfootnotemark}scriptsizeinsertfootnotetextpar%
}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesize
Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{%
href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
This figure comes from a very good photographerfootnote{Definition of figure (Entry 1 of 2) vspace{1.5ex}} % <---
end{frame}
end{document}
edit: it seams that default position of footnotes are bottom of frames (if a footnote
is outside minipage
or some box). for lifting them for some vertical space above frame bottom, you have two possibilities:
increase distances between footnotes with
addtobeamertemplate{footnote}{}{vspace{1.5ex}}
in the last
footnote
in the frame add on its end for examplevspace{1.5ex}
as is done in above mwe- i do not know, if exist solution which will automatically add some vertical space below last footnote in the frame, i.e, move footnotes above frame footer.
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
add a comment |
with use suggestion in answers to question beamer-footnote:
documentclass[demo]{beamer}
usepackage[labelformat=empty]{caption}
usepackage{hanging}
setbeamertemplate{footnote}{%
hangpara{0.8em}{1}%
makebox[0.8em][l]{scriptsizeinsertfootnotemark}scriptsizeinsertfootnotetextpar%
}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesize
Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{%
href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
This figure comes from a very good photographerfootnote{Definition of figure (Entry 1 of 2) vspace{1.5ex}} % <---
end{frame}
end{document}
edit: it seams that default position of footnotes are bottom of frames (if a footnote
is outside minipage
or some box). for lifting them for some vertical space above frame bottom, you have two possibilities:
increase distances between footnotes with
addtobeamertemplate{footnote}{}{vspace{1.5ex}}
in the last
footnote
in the frame add on its end for examplevspace{1.5ex}
as is done in above mwe- i do not know, if exist solution which will automatically add some vertical space below last footnote in the frame, i.e, move footnotes above frame footer.
with use suggestion in answers to question beamer-footnote:
documentclass[demo]{beamer}
usepackage[labelformat=empty]{caption}
usepackage{hanging}
setbeamertemplate{footnote}{%
hangpara{0.8em}{1}%
makebox[0.8em][l]{scriptsizeinsertfootnotemark}scriptsizeinsertfootnotetextpar%
}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesize
Is this the same as previous figure?
begin{figure}[h!]
caption{This is an amazing photofootnote{%
href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{photo1.jpg}
end{figure}
This figure comes from a very good photographerfootnote{Definition of figure (Entry 1 of 2) vspace{1.5ex}} % <---
end{frame}
end{document}
edit: it seams that default position of footnotes are bottom of frames (if a footnote
is outside minipage
or some box). for lifting them for some vertical space above frame bottom, you have two possibilities:
increase distances between footnotes with
addtobeamertemplate{footnote}{}{vspace{1.5ex}}
in the last
footnote
in the frame add on its end for examplevspace{1.5ex}
as is done in above mwe- i do not know, if exist solution which will automatically add some vertical space below last footnote in the frame, i.e, move footnotes above frame footer.
edited Feb 28 at 23:52
answered Feb 28 at 22:34
ZarkoZarko
126k868165
126k868165
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
add a comment |
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
can you bring the footnote a bit higher ?
– Learner
Feb 28 at 22:45
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
@Learner, see edited answer
– Zarko
Feb 28 at 23:41
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
I liked and accepted your answer , thanks
– Learner
Feb 28 at 23:59
add a comment |
Here is a non-figure version. You should put captionof
inside a group or environment (it sets @captype
locally), so I used the center
environment. My first choice would normally be minipage, but it does footnotes internally.
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{center}
captionof{figure}{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{example-image}par
end{center}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
add a comment |
Here is a non-figure version. You should put captionof
inside a group or environment (it sets @captype
locally), so I used the center
environment. My first choice would normally be minipage, but it does footnotes internally.
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{center}
captionof{figure}{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{example-image}par
end{center}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
add a comment |
Here is a non-figure version. You should put captionof
inside a group or environment (it sets @captype
locally), so I used the center
environment. My first choice would normally be minipage, but it does footnotes internally.
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{center}
captionof{figure}{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{example-image}par
end{center}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
Here is a non-figure version. You should put captionof
inside a group or environment (it sets @captype
locally), so I used the center
environment. My first choice would normally be minipage, but it does footnotes internally.
documentclass{beamer}
usepackage[labelformat=empty]{caption}
begin{document}
section{My photo}
begin{frame}
frametitle{my photos}
footnotesizetextbf Is this the same as previous figure?
begin{center}
captionof{figure}{This is an amazing photofootnote{url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
centering
includegraphics[width=0.4textwidth]{example-image}par
end{center}
footnotesize This figure comes from a very good photographer footnote{tiny Definition of figure (Entry 1 of 2)}
end{frame}
end{document}
answered Mar 1 at 4:46
John KormyloJohn Kormylo
44.9k12570
44.9k12570
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%2f477227%2fhow-can-i-move-the-footnote-in-the-far-left-or-adjust-it%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
it really makes no sense to use
figure
for a presentation, the only reason ever to use figure is to allow the text to be moved to help with automatic page breaking, that isn't something you want in a presentation. It's also impossible to have page level footnotes from a figure as it is a float box– David Carlisle
Feb 28 at 22:16