Using footnote in a figure's caption
Maybe this is an easy one, but I struggled with this now too long :)
I want to have a footnote in a caption of a figure, see the example.
begin{figure}[!ht]
caption{a figure captionfootnote{where i got it from}}
label{somelabel}
begin{center}
pgfuseimage{...}
end{center}
end{figure}
The compilation error reads as follows
! Argument of @caption has an extra }.
<inserted text>
par
l.192 ...i got it from}}
The actual tex code for my figure with the answer of Leo
pgfdeclareimage[width=6cm]{aba.medcenter}{aba.medcenter}
begin{figure}[!ht]
begin{minipage}{textwidth}
caption[Medcenter Monthly Medication System]{Medcentertextsuperscripttextregistered Monthly Medication Systemfootnote{Quelle Bild: http://www.amazon.com/dp/B000RZPL0M}}
label{aba.medcenter}
begin{center}
pgfuseimage{aba.medcenter}
end{center}
end{minipage}
end{figure}
leads to the error
! LaTeX Error: Command itshape invalid in math mode.
in the same line. If I comment out the foot note, everything compiles fine. textsuperscripttexttrademark
isn't the problem, too.
floats footnotes captions
add a comment |
Maybe this is an easy one, but I struggled with this now too long :)
I want to have a footnote in a caption of a figure, see the example.
begin{figure}[!ht]
caption{a figure captionfootnote{where i got it from}}
label{somelabel}
begin{center}
pgfuseimage{...}
end{center}
end{figure}
The compilation error reads as follows
! Argument of @caption has an extra }.
<inserted text>
par
l.192 ...i got it from}}
The actual tex code for my figure with the answer of Leo
pgfdeclareimage[width=6cm]{aba.medcenter}{aba.medcenter}
begin{figure}[!ht]
begin{minipage}{textwidth}
caption[Medcenter Monthly Medication System]{Medcentertextsuperscripttextregistered Monthly Medication Systemfootnote{Quelle Bild: http://www.amazon.com/dp/B000RZPL0M}}
label{aba.medcenter}
begin{center}
pgfuseimage{aba.medcenter}
end{center}
end{minipage}
end{figure}
leads to the error
! LaTeX Error: Command itshape invalid in math mode.
in the same line. If I comment out the foot note, everything compiles fine. textsuperscripttexttrademark
isn't the problem, too.
floats footnotes captions
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13
add a comment |
Maybe this is an easy one, but I struggled with this now too long :)
I want to have a footnote in a caption of a figure, see the example.
begin{figure}[!ht]
caption{a figure captionfootnote{where i got it from}}
label{somelabel}
begin{center}
pgfuseimage{...}
end{center}
end{figure}
The compilation error reads as follows
! Argument of @caption has an extra }.
<inserted text>
par
l.192 ...i got it from}}
The actual tex code for my figure with the answer of Leo
pgfdeclareimage[width=6cm]{aba.medcenter}{aba.medcenter}
begin{figure}[!ht]
begin{minipage}{textwidth}
caption[Medcenter Monthly Medication System]{Medcentertextsuperscripttextregistered Monthly Medication Systemfootnote{Quelle Bild: http://www.amazon.com/dp/B000RZPL0M}}
label{aba.medcenter}
begin{center}
pgfuseimage{aba.medcenter}
end{center}
end{minipage}
end{figure}
leads to the error
! LaTeX Error: Command itshape invalid in math mode.
in the same line. If I comment out the foot note, everything compiles fine. textsuperscripttexttrademark
isn't the problem, too.
floats footnotes captions
Maybe this is an easy one, but I struggled with this now too long :)
I want to have a footnote in a caption of a figure, see the example.
begin{figure}[!ht]
caption{a figure captionfootnote{where i got it from}}
label{somelabel}
begin{center}
pgfuseimage{...}
end{center}
end{figure}
The compilation error reads as follows
! Argument of @caption has an extra }.
<inserted text>
par
l.192 ...i got it from}}
The actual tex code for my figure with the answer of Leo
pgfdeclareimage[width=6cm]{aba.medcenter}{aba.medcenter}
begin{figure}[!ht]
begin{minipage}{textwidth}
caption[Medcenter Monthly Medication System]{Medcentertextsuperscripttextregistered Monthly Medication Systemfootnote{Quelle Bild: http://www.amazon.com/dp/B000RZPL0M}}
label{aba.medcenter}
begin{center}
pgfuseimage{aba.medcenter}
end{center}
end{minipage}
end{figure}
leads to the error
! LaTeX Error: Command itshape invalid in math mode.
in the same line. If I comment out the foot note, everything compiles fine. textsuperscripttexttrademark
isn't the problem, too.
floats footnotes captions
floats footnotes captions
edited Mar 7 '11 at 20:16
lockstep
191k52589720
191k52589720
asked Feb 3 '11 at 15:29
MattenMatten
2,75721819
2,75721819
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13
add a comment |
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13
add a comment |
12 Answers
12
active
oldest
votes
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionfootnotemark}
end{figure}
Anywhere on the same page where the float appearsfootnotetext{blah}
but at least before the next footnotefootnote{the nextone}
end{document}
The optional argument of caption
should always be used when the list of figures is also being used. Otherwise, you have to protect
the footnote
.
caption[Caption without FN]{caption with FN}
A useful alternative is to write a footnote-like comment directly under the caption:
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captiontextsuperscript{a=}}
smalltextsuperscript{a=} The footnote-like comment under the caption
end{figure}
10
I triedfootnotemark
andfootnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?
– Matten
Feb 3 '11 at 16:16
4
Another possible problem is,figure
environment may not be at the right page offootnotetext
.
– Leo Liu
Feb 3 '11 at 16:17
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
sorry, now I know why you insisted on placingfootnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.
– Matten
Feb 3 '11 at 16:25
8
I had to put aprotect
command right before thefootnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made bylstlistings
. Maybeprotect
is not necessary in other cases.
– Dohn Joe
May 19 '14 at 13:51
|
show 7 more comments
The combination of the answers given by Herbert
and by Peter
worked for me, i.e. the following code:
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionprotectfootnotemark}
end{figure}
footnotetext{blah blah blah}
end{document}
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's withinprotectfootnotemark
the text.
– ggll
Sep 6 '15 at 11:12
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
|
show 1 more comment
One solution:
begin{figure}
begin{minipage}{textwidth}
...
caption[Caption for LOF]%
{Real captionfootnote{blah}}
end{minipage}
end{figure}
See the UK TeX FAQ: Footnotes in captions
thanks for your answer, but I get another error, then...! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
add a comment |
Best way to put the footnote on the same page of the figure:
usepackage{afterpage}
afterpage{
begin{figure}
begin{center}
includegraphics[scale=0.75]{images/the_cited.png}
caption[The LOF caption]{Lorem ipsum. tiny{Examplefootnotemark}}
label{fig:cited_img}
end{center}
end{figure}
footnotetext{Source: url{http://www.example.com/the_image.png}
}
Fonte: http://blog.peschla.net/2012/11/latex-footnotes-in-captions/
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
it all works, but believing things such astiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be{tiny Examplefootnotemark}}
--tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.
– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain whatafterpage
is doing here?
– einpoklum
Aug 4 '15 at 18:04
add a comment |
In all these answers, people are expecting the footnote to go at the bottom of the page. Sometimes, one wishes the footnote at the bottom of the table, if the footnote appears in the table. I have several ways of dealing with that, but here is one:
documentclass[12pt]{article}
parskip 1em
usepackage{boxhandler}
begin{document}
Here is an example of a table with a footnote:
bxtable[ht]{Caption goes here}
{begin{tabular}{l}
%FIRST ROW OF OUTER TABULAR IS THE INNER TABLE
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389$^dag$\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}\ %SECOND ROW OF THE OUTER TABULAR IS THE FOOTNOTE
rule{0in}{1.2em}$^dag$scriptsize This is the footnote text\ end{tabular}
}
If you look at the form as defined in the .tex file, you will see
several things of note. First, there is a tabular within a tabular.
The outer (first to begin, last to end) tabular uses a single column and
contains two ``rows.'' The first ``row'' is the inner tablular and the
second ``row'' is the footnote Next, we use the verb,dag, command for
the footnote symbol, but you can use any symbol you like. I also added
two hard spaces after the 1.586 so that the column alignment wasn't
messed up by the dagger. I used the rule command of 0 width and 1.2em
height to set the footnote offset below the table. Making 1.2 a greater
number will increase the offset and vice versa. Finally, you will note
that I used {scriptsizeverb,scriptsize,} to change the size of the
footnote text. You could make it {footnotesizeverb,footnotesize,} or
even keep it the same size as the table {smallverb,small,}.
end{document}
2
There is athreeparttable
package that does this.
– Joe Corneli
May 1 '16 at 0:01
add a comment |
To use the usual footnote
command inside caption
and obtain the usual foot notes at the end of page (not just inside the float as using minipages), you can use the package ftnxtra
.
Note that in any case, if the float jump to the next page, the foot note will remain in the same place, so this is always a dangerous practice.
Another problem will be the bottom floats with footnote
, since they are placed by default under the foot notes:
But this problem can be solved using the fnpos
or stfloats
packages:
documentclass{article}
usepackage{lipsum} % for dummy text
usepackage[demo]{graphicx}
usepackage{ftnxtra}
usepackage{fnpos} % makeFNbelow by default
% or usepackage{stfloats} fnbelowfloat
begin{document}
lipsum[1-3]
begin{figure}[b]
centering
includegraphics[scale=.2]{image}
caption{A caption footnote{A footnote}}
label{label}
end{figure}
lipsum[1-2]
end{document}
I tried you way in your answer,caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page
– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Changelipsum[1-3]
bylipsum[1-4]
and after thatlipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down thefigure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).
– Fran
Apr 23 '14 at 5:12
This MWE does not work withusepackage{tikz}
.
– Mr. Tao
May 28 '18 at 18:55
add a comment |
For what it is worth, I simply used a protect
and the regular footnote
seemed to work OK.
8
Does it really? Cause for meprotectfootnote
does exactly whatfootnotemark
alone would do. In other words: no footnote text.
– Christian
Nov 26 '12 at 15:21
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
add a comment |
As mentioned below, sometimes one wants the footnote under the table, rather that at page bottom. Here is the other way I do it
documentclass[12pt]{article}
usepackage{boxhandler}
begin{document}
This is an alternate way to do a footnote in a table, with the minipage
environment.
bxtable[ht]{Caption goes here}
{begin{minipage}{187.23183pt} % GUESS (OR CALCULATE) MINIPAGE WIDTH
renewcommandfootnoterule{} % ELIMINATE LITTLE LINE SEPARATER
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389footnote{scriptsize This is the
footnote text blah blah blah blahty blah}\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}
vspace{-2ex} % SHIFT FOOTNOTE UP
end{minipage}
}
end{document}
add a comment |
I had the same issue with table floats. And the discussion here helped me :)
If you surround the float with a savenotes environment, then the snipped protectfootnote{foo}
works. In some cases where the float is far off, you have to move the whole float in the source to the right place in text where the float mechanism of latex wants to put it. This is a job for the finalisation of a document and it is a workaround for the last open issue which is that the footnote sometimes does not appear on the right page.
So for me works:
begin{savenotes}
begin{table}[tb]
begin{tabular}{...}
...
end{tabular}
caption{fooprotectfootnote{bar}}
end{table}
end{savenotes}
Someone should test this with figure floats.
add a comment |
The only way I could get this working, in my case, was using @Leo Liu's answer (in this same topic https://tex.stackexchange.com/a/10182/35364), plus this workaround to get footnote's numbering ok, for it was displaying a symbol, at first. I got something like this:
renewcommandthempfootnote{arabic{mpfootnote}} %so it will show numbers instead of symbols
begin{figure}
begin{minipage}{textwidth}
setcounter{mpfootnote}{1} % sets footnote's starting number within this minipage to 1
...
caption{Captionfootnotemark.}
footnotetext{Foot notes}
end{minipage}
end{figure}
This was the only way I was able to have image and footnote on the same page, with desired number. afterpage
solution sent the whole image far away from expected, and the others gave me a footnote text on the page right before my image...
add a comment |
I use minipage
, with protect
before footnote
. The footnote text appears right below the figure. This combines several solutions above, the result is quite simple and robust.
The optional argument of caption
, viz., [Short caption]
is needed if your document also contains a listoffigures
instruction. If your document does not feature a List of Figures, you can omit the optional argument.
begin{figure}
centering
begin{minipage}{1.textwidth}
%renewcommandfootnoterule{} % optional removing footnote bar
centering
includegraphics[width=.7linewidth]{somefile}
caption[Short caption]{Full captionprotectfootnote{Some footnote text}.}
label{fig:somefigure}
end{minipage}
end{figure}
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
add a comment |
The first table in the documentation of the ctable package is a good example, having footnotes in the caption as well as in the table cells. Works for figures, too.
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%2f10181%2fusing-footnote-in-a-figures-caption%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
12 Answers
12
active
oldest
votes
12 Answers
12
active
oldest
votes
active
oldest
votes
active
oldest
votes
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionfootnotemark}
end{figure}
Anywhere on the same page where the float appearsfootnotetext{blah}
but at least before the next footnotefootnote{the nextone}
end{document}
The optional argument of caption
should always be used when the list of figures is also being used. Otherwise, you have to protect
the footnote
.
caption[Caption without FN]{caption with FN}
A useful alternative is to write a footnote-like comment directly under the caption:
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captiontextsuperscript{a=}}
smalltextsuperscript{a=} The footnote-like comment under the caption
end{figure}
10
I triedfootnotemark
andfootnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?
– Matten
Feb 3 '11 at 16:16
4
Another possible problem is,figure
environment may not be at the right page offootnotetext
.
– Leo Liu
Feb 3 '11 at 16:17
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
sorry, now I know why you insisted on placingfootnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.
– Matten
Feb 3 '11 at 16:25
8
I had to put aprotect
command right before thefootnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made bylstlistings
. Maybeprotect
is not necessary in other cases.
– Dohn Joe
May 19 '14 at 13:51
|
show 7 more comments
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionfootnotemark}
end{figure}
Anywhere on the same page where the float appearsfootnotetext{blah}
but at least before the next footnotefootnote{the nextone}
end{document}
The optional argument of caption
should always be used when the list of figures is also being used. Otherwise, you have to protect
the footnote
.
caption[Caption without FN]{caption with FN}
A useful alternative is to write a footnote-like comment directly under the caption:
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captiontextsuperscript{a=}}
smalltextsuperscript{a=} The footnote-like comment under the caption
end{figure}
10
I triedfootnotemark
andfootnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?
– Matten
Feb 3 '11 at 16:16
4
Another possible problem is,figure
environment may not be at the right page offootnotetext
.
– Leo Liu
Feb 3 '11 at 16:17
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
sorry, now I know why you insisted on placingfootnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.
– Matten
Feb 3 '11 at 16:25
8
I had to put aprotect
command right before thefootnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made bylstlistings
. Maybeprotect
is not necessary in other cases.
– Dohn Joe
May 19 '14 at 13:51
|
show 7 more comments
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionfootnotemark}
end{figure}
Anywhere on the same page where the float appearsfootnotetext{blah}
but at least before the next footnotefootnote{the nextone}
end{document}
The optional argument of caption
should always be used when the list of figures is also being used. Otherwise, you have to protect
the footnote
.
caption[Caption without FN]{caption with FN}
A useful alternative is to write a footnote-like comment directly under the caption:
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captiontextsuperscript{a=}}
smalltextsuperscript{a=} The footnote-like comment under the caption
end{figure}
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionfootnotemark}
end{figure}
Anywhere on the same page where the float appearsfootnotetext{blah}
but at least before the next footnotefootnote{the nextone}
end{document}
The optional argument of caption
should always be used when the list of figures is also being used. Otherwise, you have to protect
the footnote
.
caption[Caption without FN]{caption with FN}
A useful alternative is to write a footnote-like comment directly under the caption:
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captiontextsuperscript{a=}}
smalltextsuperscript{a=} The footnote-like comment under the caption
end{figure}
edited Jun 30 '17 at 13:09
Right leg
1509
1509
answered Feb 3 '11 at 16:11
HerbertHerbert
274k24416729
274k24416729
10
I triedfootnotemark
andfootnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?
– Matten
Feb 3 '11 at 16:16
4
Another possible problem is,figure
environment may not be at the right page offootnotetext
.
– Leo Liu
Feb 3 '11 at 16:17
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
sorry, now I know why you insisted on placingfootnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.
– Matten
Feb 3 '11 at 16:25
8
I had to put aprotect
command right before thefootnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made bylstlistings
. Maybeprotect
is not necessary in other cases.
– Dohn Joe
May 19 '14 at 13:51
|
show 7 more comments
10
I triedfootnotemark
andfootnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?
– Matten
Feb 3 '11 at 16:16
4
Another possible problem is,figure
environment may not be at the right page offootnotetext
.
– Leo Liu
Feb 3 '11 at 16:17
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
sorry, now I know why you insisted on placingfootnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.
– Matten
Feb 3 '11 at 16:25
8
I had to put aprotect
command right before thefootnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made bylstlistings
. Maybeprotect
is not necessary in other cases.
– Dohn Joe
May 19 '14 at 13:51
10
10
I tried
footnotemark
and footnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?– Matten
Feb 3 '11 at 16:16
I tried
footnotemark
and footnotetext
previously, but I ended up having the foot note a page before the figure, which is not very elegant. Any suggestions for this problem?– Matten
Feb 3 '11 at 16:16
4
4
Another possible problem is,
figure
environment may not be at the right page of footnotetext
.– Leo Liu
Feb 3 '11 at 16:17
Another possible problem is,
figure
environment may not be at the right page of footnotetext
.– Leo Liu
Feb 3 '11 at 16:17
4
4
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
@Matten: could you please read what I wrote ...
– Herbert
Feb 3 '11 at 16:19
3
3
sorry, now I know why you insisted on placing
footnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.– Matten
Feb 3 '11 at 16:25
sorry, now I know why you insisted on placing
footnotetext{}
on the same page where the float appears :) This solution involves looking up each figure in the produced document and placing the foot notes afterwards. I'm writing a large document with a lot of figures, many requiring the foot notes. Maybe there is another way? But thank you, this is okay for now. I'll accept your answer if no better solutions come up.– Matten
Feb 3 '11 at 16:25
8
8
I had to put a
protect
command right before the footnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made by lstlistings
. Maybe protect
is not necessary in other cases.– Dohn Joe
May 19 '14 at 13:51
I had to put a
protect
command right before the footnotemark
. Otherwise, this works. For clarification: I used this answer to put a footnote into the caption of a listing made by lstlistings
. Maybe protect
is not necessary in other cases.– Dohn Joe
May 19 '14 at 13:51
|
show 7 more comments
The combination of the answers given by Herbert
and by Peter
worked for me, i.e. the following code:
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionprotectfootnotemark}
end{figure}
footnotetext{blah blah blah}
end{document}
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's withinprotectfootnotemark
the text.
– ggll
Sep 6 '15 at 11:12
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
|
show 1 more comment
The combination of the answers given by Herbert
and by Peter
worked for me, i.e. the following code:
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionprotectfootnotemark}
end{figure}
footnotetext{blah blah blah}
end{document}
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's withinprotectfootnotemark
the text.
– ggll
Sep 6 '15 at 11:12
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
|
show 1 more comment
The combination of the answers given by Herbert
and by Peter
worked for me, i.e. the following code:
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionprotectfootnotemark}
end{figure}
footnotetext{blah blah blah}
end{document}
The combination of the answers given by Herbert
and by Peter
worked for me, i.e. the following code:
documentclass{article}
usepackage[demo]{graphicx}
begin{document}
begin{figure}
centering
includegraphics{foo} ...
caption[Caption for LOF]{Real captionprotectfootnotemark}
end{figure}
footnotetext{blah blah blah}
end{document}
edited Apr 13 '17 at 12:35
Community♦
1
1
answered Aug 14 '12 at 1:28
DeeDee
1,611198
1,611198
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's withinprotectfootnotemark
the text.
– ggll
Sep 6 '15 at 11:12
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
|
show 1 more comment
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's withinprotectfootnotemark
the text.
– ggll
Sep 6 '15 at 11:12
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
15
15
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
this is the only solution that is really working... thanks
– user219882
Dec 6 '12 at 16:32
2
2
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
For me, both this and Herbert's solution worked, however I needed this one to remove my compilation errors.
– Chris
Apr 29 '14 at 16:58
1
1
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
For me, this works but I also need to take care where footnotetext{blah blah blah} appear - it realle needs to be inserted between text on the the same page as the table appears in compiled document as Herbert stresses out.
– sup
Jun 19 '15 at 12:12
you need to add a space after the footnotemark if it's within
protectfootnotemark
the text.– ggll
Sep 6 '15 at 11:12
you need to add a space after the footnotemark if it's within
protectfootnotemark
the text.– ggll
Sep 6 '15 at 11:12
1
1
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
This works with the small caveat that If the figure is at the bottom of the page, the footnote will be on the next page.
– Max N
Dec 3 '17 at 20:58
|
show 1 more comment
One solution:
begin{figure}
begin{minipage}{textwidth}
...
caption[Caption for LOF]%
{Real captionfootnote{blah}}
end{minipage}
end{figure}
See the UK TeX FAQ: Footnotes in captions
thanks for your answer, but I get another error, then...! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
add a comment |
One solution:
begin{figure}
begin{minipage}{textwidth}
...
caption[Caption for LOF]%
{Real captionfootnote{blah}}
end{minipage}
end{figure}
See the UK TeX FAQ: Footnotes in captions
thanks for your answer, but I get another error, then...! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
add a comment |
One solution:
begin{figure}
begin{minipage}{textwidth}
...
caption[Caption for LOF]%
{Real captionfootnote{blah}}
end{minipage}
end{figure}
See the UK TeX FAQ: Footnotes in captions
One solution:
begin{figure}
begin{minipage}{textwidth}
...
caption[Caption for LOF]%
{Real captionfootnote{blah}}
end{minipage}
end{figure}
See the UK TeX FAQ: Footnotes in captions
edited Sep 25 '12 at 5:00
doncherry
35k23135208
35k23135208
answered Feb 3 '11 at 15:33
Leo LiuLeo Liu
63.3k7184262
63.3k7184262
thanks for your answer, but I get another error, then...! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
add a comment |
thanks for your answer, but I get another error, then...! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
thanks for your answer, but I get another error, then...
! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
thanks for your answer, but I get another error, then...
! LaTeX Error: Command itshape invalid in math mode.
– Matten
Feb 3 '11 at 15:50
2
2
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
@Matten: I don't think it is about footnote in caption. Can you provide a full example in the question?
– Leo Liu
Feb 3 '11 at 16:16
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
I added the actual figure. If I comment out the foot note, the error disappears.
– Matten
Feb 3 '11 at 16:22
add a comment |
Best way to put the footnote on the same page of the figure:
usepackage{afterpage}
afterpage{
begin{figure}
begin{center}
includegraphics[scale=0.75]{images/the_cited.png}
caption[The LOF caption]{Lorem ipsum. tiny{Examplefootnotemark}}
label{fig:cited_img}
end{center}
end{figure}
footnotetext{Source: url{http://www.example.com/the_image.png}
}
Fonte: http://blog.peschla.net/2012/11/latex-footnotes-in-captions/
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
it all works, but believing things such astiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be{tiny Examplefootnotemark}}
--tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.
– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain whatafterpage
is doing here?
– einpoklum
Aug 4 '15 at 18:04
add a comment |
Best way to put the footnote on the same page of the figure:
usepackage{afterpage}
afterpage{
begin{figure}
begin{center}
includegraphics[scale=0.75]{images/the_cited.png}
caption[The LOF caption]{Lorem ipsum. tiny{Examplefootnotemark}}
label{fig:cited_img}
end{center}
end{figure}
footnotetext{Source: url{http://www.example.com/the_image.png}
}
Fonte: http://blog.peschla.net/2012/11/latex-footnotes-in-captions/
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
it all works, but believing things such astiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be{tiny Examplefootnotemark}}
--tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.
– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain whatafterpage
is doing here?
– einpoklum
Aug 4 '15 at 18:04
add a comment |
Best way to put the footnote on the same page of the figure:
usepackage{afterpage}
afterpage{
begin{figure}
begin{center}
includegraphics[scale=0.75]{images/the_cited.png}
caption[The LOF caption]{Lorem ipsum. tiny{Examplefootnotemark}}
label{fig:cited_img}
end{center}
end{figure}
footnotetext{Source: url{http://www.example.com/the_image.png}
}
Fonte: http://blog.peschla.net/2012/11/latex-footnotes-in-captions/
Best way to put the footnote on the same page of the figure:
usepackage{afterpage}
afterpage{
begin{figure}
begin{center}
includegraphics[scale=0.75]{images/the_cited.png}
caption[The LOF caption]{Lorem ipsum. tiny{Examplefootnotemark}}
label{fig:cited_img}
end{center}
end{figure}
footnotetext{Source: url{http://www.example.com/the_image.png}
}
Fonte: http://blog.peschla.net/2012/11/latex-footnotes-in-captions/
answered Nov 20 '13 at 22:21
PatucaoPatucao
12112
12112
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
it all works, but believing things such astiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be{tiny Examplefootnotemark}}
--tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.
– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain whatafterpage
is doing here?
– einpoklum
Aug 4 '15 at 18:04
add a comment |
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
it all works, but believing things such astiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be{tiny Examplefootnotemark}}
--tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.
– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain whatafterpage
is doing here?
– einpoklum
Aug 4 '15 at 18:04
2
2
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
It will definitely push figure and footnote on the same page, but use with caution! It can have ugly side effects, like pushing a figure into a new section.
– Sebastian Schmitz
Jul 22 '14 at 8:29
2
2
it all works, but believing things such as
tiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be {tiny Examplefootnotemark}}
-- tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.– wasteofspace
Sep 18 '14 at 14:03
it all works, but believing things such as
tiny{Examplefootnotemark}}
will come back and bite you sooner or later. it should be {tiny Examplefootnotemark}}
-- tiny
sets up the “current font”, it doesn’t take an argument in the way you wrote it.– wasteofspace
Sep 18 '14 at 14:03
Can someone please explain what
afterpage
is doing here?– einpoklum
Aug 4 '15 at 18:04
Can someone please explain what
afterpage
is doing here?– einpoklum
Aug 4 '15 at 18:04
add a comment |
In all these answers, people are expecting the footnote to go at the bottom of the page. Sometimes, one wishes the footnote at the bottom of the table, if the footnote appears in the table. I have several ways of dealing with that, but here is one:
documentclass[12pt]{article}
parskip 1em
usepackage{boxhandler}
begin{document}
Here is an example of a table with a footnote:
bxtable[ht]{Caption goes here}
{begin{tabular}{l}
%FIRST ROW OF OUTER TABULAR IS THE INNER TABLE
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389$^dag$\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}\ %SECOND ROW OF THE OUTER TABULAR IS THE FOOTNOTE
rule{0in}{1.2em}$^dag$scriptsize This is the footnote text\ end{tabular}
}
If you look at the form as defined in the .tex file, you will see
several things of note. First, there is a tabular within a tabular.
The outer (first to begin, last to end) tabular uses a single column and
contains two ``rows.'' The first ``row'' is the inner tablular and the
second ``row'' is the footnote Next, we use the verb,dag, command for
the footnote symbol, but you can use any symbol you like. I also added
two hard spaces after the 1.586 so that the column alignment wasn't
messed up by the dagger. I used the rule command of 0 width and 1.2em
height to set the footnote offset below the table. Making 1.2 a greater
number will increase the offset and vice versa. Finally, you will note
that I used {scriptsizeverb,scriptsize,} to change the size of the
footnote text. You could make it {footnotesizeverb,footnotesize,} or
even keep it the same size as the table {smallverb,small,}.
end{document}
2
There is athreeparttable
package that does this.
– Joe Corneli
May 1 '16 at 0:01
add a comment |
In all these answers, people are expecting the footnote to go at the bottom of the page. Sometimes, one wishes the footnote at the bottom of the table, if the footnote appears in the table. I have several ways of dealing with that, but here is one:
documentclass[12pt]{article}
parskip 1em
usepackage{boxhandler}
begin{document}
Here is an example of a table with a footnote:
bxtable[ht]{Caption goes here}
{begin{tabular}{l}
%FIRST ROW OF OUTER TABULAR IS THE INNER TABLE
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389$^dag$\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}\ %SECOND ROW OF THE OUTER TABULAR IS THE FOOTNOTE
rule{0in}{1.2em}$^dag$scriptsize This is the footnote text\ end{tabular}
}
If you look at the form as defined in the .tex file, you will see
several things of note. First, there is a tabular within a tabular.
The outer (first to begin, last to end) tabular uses a single column and
contains two ``rows.'' The first ``row'' is the inner tablular and the
second ``row'' is the footnote Next, we use the verb,dag, command for
the footnote symbol, but you can use any symbol you like. I also added
two hard spaces after the 1.586 so that the column alignment wasn't
messed up by the dagger. I used the rule command of 0 width and 1.2em
height to set the footnote offset below the table. Making 1.2 a greater
number will increase the offset and vice versa. Finally, you will note
that I used {scriptsizeverb,scriptsize,} to change the size of the
footnote text. You could make it {footnotesizeverb,footnotesize,} or
even keep it the same size as the table {smallverb,small,}.
end{document}
2
There is athreeparttable
package that does this.
– Joe Corneli
May 1 '16 at 0:01
add a comment |
In all these answers, people are expecting the footnote to go at the bottom of the page. Sometimes, one wishes the footnote at the bottom of the table, if the footnote appears in the table. I have several ways of dealing with that, but here is one:
documentclass[12pt]{article}
parskip 1em
usepackage{boxhandler}
begin{document}
Here is an example of a table with a footnote:
bxtable[ht]{Caption goes here}
{begin{tabular}{l}
%FIRST ROW OF OUTER TABULAR IS THE INNER TABLE
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389$^dag$\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}\ %SECOND ROW OF THE OUTER TABULAR IS THE FOOTNOTE
rule{0in}{1.2em}$^dag$scriptsize This is the footnote text\ end{tabular}
}
If you look at the form as defined in the .tex file, you will see
several things of note. First, there is a tabular within a tabular.
The outer (first to begin, last to end) tabular uses a single column and
contains two ``rows.'' The first ``row'' is the inner tablular and the
second ``row'' is the footnote Next, we use the verb,dag, command for
the footnote symbol, but you can use any symbol you like. I also added
two hard spaces after the 1.586 so that the column alignment wasn't
messed up by the dagger. I used the rule command of 0 width and 1.2em
height to set the footnote offset below the table. Making 1.2 a greater
number will increase the offset and vice versa. Finally, you will note
that I used {scriptsizeverb,scriptsize,} to change the size of the
footnote text. You could make it {footnotesizeverb,footnotesize,} or
even keep it the same size as the table {smallverb,small,}.
end{document}
In all these answers, people are expecting the footnote to go at the bottom of the page. Sometimes, one wishes the footnote at the bottom of the table, if the footnote appears in the table. I have several ways of dealing with that, but here is one:
documentclass[12pt]{article}
parskip 1em
usepackage{boxhandler}
begin{document}
Here is an example of a table with a footnote:
bxtable[ht]{Caption goes here}
{begin{tabular}{l}
%FIRST ROW OF OUTER TABULAR IS THE INNER TABLE
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389$^dag$\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}\ %SECOND ROW OF THE OUTER TABULAR IS THE FOOTNOTE
rule{0in}{1.2em}$^dag$scriptsize This is the footnote text\ end{tabular}
}
If you look at the form as defined in the .tex file, you will see
several things of note. First, there is a tabular within a tabular.
The outer (first to begin, last to end) tabular uses a single column and
contains two ``rows.'' The first ``row'' is the inner tablular and the
second ``row'' is the footnote Next, we use the verb,dag, command for
the footnote symbol, but you can use any symbol you like. I also added
two hard spaces after the 1.586 so that the column alignment wasn't
messed up by the dagger. I used the rule command of 0 width and 1.2em
height to set the footnote offset below the table. Making 1.2 a greater
number will increase the offset and vice versa. Finally, you will note
that I used {scriptsizeverb,scriptsize,} to change the size of the
footnote text. You could make it {footnotesizeverb,footnotesize,} or
even keep it the same size as the table {smallverb,small,}.
end{document}
edited Jun 5 '17 at 10:13
answered Feb 21 '13 at 17:53
Steven B. SegletesSteven B. Segletes
155k9199407
155k9199407
2
There is athreeparttable
package that does this.
– Joe Corneli
May 1 '16 at 0:01
add a comment |
2
There is athreeparttable
package that does this.
– Joe Corneli
May 1 '16 at 0:01
2
2
There is a
threeparttable
package that does this.– Joe Corneli
May 1 '16 at 0:01
There is a
threeparttable
package that does this.– Joe Corneli
May 1 '16 at 0:01
add a comment |
To use the usual footnote
command inside caption
and obtain the usual foot notes at the end of page (not just inside the float as using minipages), you can use the package ftnxtra
.
Note that in any case, if the float jump to the next page, the foot note will remain in the same place, so this is always a dangerous practice.
Another problem will be the bottom floats with footnote
, since they are placed by default under the foot notes:
But this problem can be solved using the fnpos
or stfloats
packages:
documentclass{article}
usepackage{lipsum} % for dummy text
usepackage[demo]{graphicx}
usepackage{ftnxtra}
usepackage{fnpos} % makeFNbelow by default
% or usepackage{stfloats} fnbelowfloat
begin{document}
lipsum[1-3]
begin{figure}[b]
centering
includegraphics[scale=.2]{image}
caption{A caption footnote{A footnote}}
label{label}
end{figure}
lipsum[1-2]
end{document}
I tried you way in your answer,caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page
– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Changelipsum[1-3]
bylipsum[1-4]
and after thatlipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down thefigure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).
– Fran
Apr 23 '14 at 5:12
This MWE does not work withusepackage{tikz}
.
– Mr. Tao
May 28 '18 at 18:55
add a comment |
To use the usual footnote
command inside caption
and obtain the usual foot notes at the end of page (not just inside the float as using minipages), you can use the package ftnxtra
.
Note that in any case, if the float jump to the next page, the foot note will remain in the same place, so this is always a dangerous practice.
Another problem will be the bottom floats with footnote
, since they are placed by default under the foot notes:
But this problem can be solved using the fnpos
or stfloats
packages:
documentclass{article}
usepackage{lipsum} % for dummy text
usepackage[demo]{graphicx}
usepackage{ftnxtra}
usepackage{fnpos} % makeFNbelow by default
% or usepackage{stfloats} fnbelowfloat
begin{document}
lipsum[1-3]
begin{figure}[b]
centering
includegraphics[scale=.2]{image}
caption{A caption footnote{A footnote}}
label{label}
end{figure}
lipsum[1-2]
end{document}
I tried you way in your answer,caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page
– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Changelipsum[1-3]
bylipsum[1-4]
and after thatlipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down thefigure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).
– Fran
Apr 23 '14 at 5:12
This MWE does not work withusepackage{tikz}
.
– Mr. Tao
May 28 '18 at 18:55
add a comment |
To use the usual footnote
command inside caption
and obtain the usual foot notes at the end of page (not just inside the float as using minipages), you can use the package ftnxtra
.
Note that in any case, if the float jump to the next page, the foot note will remain in the same place, so this is always a dangerous practice.
Another problem will be the bottom floats with footnote
, since they are placed by default under the foot notes:
But this problem can be solved using the fnpos
or stfloats
packages:
documentclass{article}
usepackage{lipsum} % for dummy text
usepackage[demo]{graphicx}
usepackage{ftnxtra}
usepackage{fnpos} % makeFNbelow by default
% or usepackage{stfloats} fnbelowfloat
begin{document}
lipsum[1-3]
begin{figure}[b]
centering
includegraphics[scale=.2]{image}
caption{A caption footnote{A footnote}}
label{label}
end{figure}
lipsum[1-2]
end{document}
To use the usual footnote
command inside caption
and obtain the usual foot notes at the end of page (not just inside the float as using minipages), you can use the package ftnxtra
.
Note that in any case, if the float jump to the next page, the foot note will remain in the same place, so this is always a dangerous practice.
Another problem will be the bottom floats with footnote
, since they are placed by default under the foot notes:
But this problem can be solved using the fnpos
or stfloats
packages:
documentclass{article}
usepackage{lipsum} % for dummy text
usepackage[demo]{graphicx}
usepackage{ftnxtra}
usepackage{fnpos} % makeFNbelow by default
% or usepackage{stfloats} fnbelowfloat
begin{document}
lipsum[1-3]
begin{figure}[b]
centering
includegraphics[scale=.2]{image}
caption{A caption footnote{A footnote}}
label{label}
end{figure}
lipsum[1-2]
end{document}
edited Sep 14 '13 at 11:51
answered Sep 14 '13 at 11:45
FranFran
52.5k6117178
52.5k6117178
I tried you way in your answer,caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page
– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Changelipsum[1-3]
bylipsum[1-4]
and after thatlipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down thefigure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).
– Fran
Apr 23 '14 at 5:12
This MWE does not work withusepackage{tikz}
.
– Mr. Tao
May 28 '18 at 18:55
add a comment |
I tried you way in your answer,caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page
– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Changelipsum[1-3]
bylipsum[1-4]
and after thatlipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down thefigure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).
– Fran
Apr 23 '14 at 5:12
This MWE does not work withusepackage{tikz}
.
– Mr. Tao
May 28 '18 at 18:55
I tried you way in your answer,
caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page– Nax
Apr 23 '14 at 3:25
I tried you way in your answer,
caption{A caption footnote{A footnote}}
but this no "a footnote" appeared below the page– Nax
Apr 23 '14 at 3:25
May be appeared above the page? Have you read the second paragraph of my answer? Change
lipsum[1-3]
by lipsum[1-4]
and after that lipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down the figure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).– Fran
Apr 23 '14 at 5:12
May be appeared above the page? Have you read the second paragraph of my answer? Change
lipsum[1-3]
by lipsum[1-4]
and after that lipsum[1-5]
in my MWE and check the result in each case. If this is the problem, the solution is move up/down the figure
a few paragraphs until the footnote is showed in the same page that the image (or use the approaches of another answers).– Fran
Apr 23 '14 at 5:12
This MWE does not work with
usepackage{tikz}
.– Mr. Tao
May 28 '18 at 18:55
This MWE does not work with
usepackage{tikz}
.– Mr. Tao
May 28 '18 at 18:55
add a comment |
For what it is worth, I simply used a protect
and the regular footnote
seemed to work OK.
8
Does it really? Cause for meprotectfootnote
does exactly whatfootnotemark
alone would do. In other words: no footnote text.
– Christian
Nov 26 '12 at 15:21
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
add a comment |
For what it is worth, I simply used a protect
and the regular footnote
seemed to work OK.
8
Does it really? Cause for meprotectfootnote
does exactly whatfootnotemark
alone would do. In other words: no footnote text.
– Christian
Nov 26 '12 at 15:21
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
add a comment |
For what it is worth, I simply used a protect
and the regular footnote
seemed to work OK.
For what it is worth, I simply used a protect
and the regular footnote
seemed to work OK.
edited Jul 19 '12 at 12:55
doncherry
35k23135208
35k23135208
answered Jul 19 '12 at 12:20
PeterPeter
4911
4911
8
Does it really? Cause for meprotectfootnote
does exactly whatfootnotemark
alone would do. In other words: no footnote text.
– Christian
Nov 26 '12 at 15:21
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
add a comment |
8
Does it really? Cause for meprotectfootnote
does exactly whatfootnotemark
alone would do. In other words: no footnote text.
– Christian
Nov 26 '12 at 15:21
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
8
8
Does it really? Cause for me
protectfootnote
does exactly what footnotemark
alone would do. In other words: no footnote text.– Christian
Nov 26 '12 at 15:21
Does it really? Cause for me
protectfootnote
does exactly what footnotemark
alone would do. In other words: no footnote text.– Christian
Nov 26 '12 at 15:21
2
2
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
did not work for me as well
– Fabian Rost
Aug 12 '16 at 8:36
add a comment |
As mentioned below, sometimes one wants the footnote under the table, rather that at page bottom. Here is the other way I do it
documentclass[12pt]{article}
usepackage{boxhandler}
begin{document}
This is an alternate way to do a footnote in a table, with the minipage
environment.
bxtable[ht]{Caption goes here}
{begin{minipage}{187.23183pt} % GUESS (OR CALCULATE) MINIPAGE WIDTH
renewcommandfootnoterule{} % ELIMINATE LITTLE LINE SEPARATER
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389footnote{scriptsize This is the
footnote text blah blah blah blahty blah}\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}
vspace{-2ex} % SHIFT FOOTNOTE UP
end{minipage}
}
end{document}
add a comment |
As mentioned below, sometimes one wants the footnote under the table, rather that at page bottom. Here is the other way I do it
documentclass[12pt]{article}
usepackage{boxhandler}
begin{document}
This is an alternate way to do a footnote in a table, with the minipage
environment.
bxtable[ht]{Caption goes here}
{begin{minipage}{187.23183pt} % GUESS (OR CALCULATE) MINIPAGE WIDTH
renewcommandfootnoterule{} % ELIMINATE LITTLE LINE SEPARATER
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389footnote{scriptsize This is the
footnote text blah blah blah blahty blah}\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}
vspace{-2ex} % SHIFT FOOTNOTE UP
end{minipage}
}
end{document}
add a comment |
As mentioned below, sometimes one wants the footnote under the table, rather that at page bottom. Here is the other way I do it
documentclass[12pt]{article}
usepackage{boxhandler}
begin{document}
This is an alternate way to do a footnote in a table, with the minipage
environment.
bxtable[ht]{Caption goes here}
{begin{minipage}{187.23183pt} % GUESS (OR CALCULATE) MINIPAGE WIDTH
renewcommandfootnoterule{} % ELIMINATE LITTLE LINE SEPARATER
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389footnote{scriptsize This is the
footnote text blah blah blah blahty blah}\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}
vspace{-2ex} % SHIFT FOOTNOTE UP
end{minipage}
}
end{document}
As mentioned below, sometimes one wants the footnote under the table, rather that at page bottom. Here is the other way I do it
documentclass[12pt]{article}
usepackage{boxhandler}
begin{document}
This is an alternate way to do a footnote in a table, with the minipage
environment.
bxtable[ht]{Caption goes here}
{begin{minipage}{187.23183pt} % GUESS (OR CALCULATE) MINIPAGE WIDTH
renewcommandfootnoterule{} % ELIMINATE LITTLE LINE SEPARATER
begin{tabular}{|l|c|c|}
hline
Title & Column 1 & Column 2\ hline
First Test & 1.234 & 5.389footnote{scriptsize This is the
footnote text blah blah blah blahty blah}\ hline
Second Test & 3.894 & 1.586~~\ hline
end{tabular}
vspace{-2ex} % SHIFT FOOTNOTE UP
end{minipage}
}
end{document}
edited Jun 3 '17 at 16:36
Ulrike Fischer
192k8302683
192k8302683
answered Feb 21 '13 at 18:05
Steven B. SegletesSteven B. Segletes
155k9199407
155k9199407
add a comment |
add a comment |
I had the same issue with table floats. And the discussion here helped me :)
If you surround the float with a savenotes environment, then the snipped protectfootnote{foo}
works. In some cases where the float is far off, you have to move the whole float in the source to the right place in text where the float mechanism of latex wants to put it. This is a job for the finalisation of a document and it is a workaround for the last open issue which is that the footnote sometimes does not appear on the right page.
So for me works:
begin{savenotes}
begin{table}[tb]
begin{tabular}{...}
...
end{tabular}
caption{fooprotectfootnote{bar}}
end{table}
end{savenotes}
Someone should test this with figure floats.
add a comment |
I had the same issue with table floats. And the discussion here helped me :)
If you surround the float with a savenotes environment, then the snipped protectfootnote{foo}
works. In some cases where the float is far off, you have to move the whole float in the source to the right place in text where the float mechanism of latex wants to put it. This is a job for the finalisation of a document and it is a workaround for the last open issue which is that the footnote sometimes does not appear on the right page.
So for me works:
begin{savenotes}
begin{table}[tb]
begin{tabular}{...}
...
end{tabular}
caption{fooprotectfootnote{bar}}
end{table}
end{savenotes}
Someone should test this with figure floats.
add a comment |
I had the same issue with table floats. And the discussion here helped me :)
If you surround the float with a savenotes environment, then the snipped protectfootnote{foo}
works. In some cases where the float is far off, you have to move the whole float in the source to the right place in text where the float mechanism of latex wants to put it. This is a job for the finalisation of a document and it is a workaround for the last open issue which is that the footnote sometimes does not appear on the right page.
So for me works:
begin{savenotes}
begin{table}[tb]
begin{tabular}{...}
...
end{tabular}
caption{fooprotectfootnote{bar}}
end{table}
end{savenotes}
Someone should test this with figure floats.
I had the same issue with table floats. And the discussion here helped me :)
If you surround the float with a savenotes environment, then the snipped protectfootnote{foo}
works. In some cases where the float is far off, you have to move the whole float in the source to the right place in text where the float mechanism of latex wants to put it. This is a job for the finalisation of a document and it is a workaround for the last open issue which is that the footnote sometimes does not appear on the right page.
So for me works:
begin{savenotes}
begin{table}[tb]
begin{tabular}{...}
...
end{tabular}
caption{fooprotectfootnote{bar}}
end{table}
end{savenotes}
Someone should test this with figure floats.
edited Feb 26 '13 at 16:23
Community♦
1
1
answered Feb 21 '13 at 17:39
user26280user26280
211
211
add a comment |
add a comment |
The only way I could get this working, in my case, was using @Leo Liu's answer (in this same topic https://tex.stackexchange.com/a/10182/35364), plus this workaround to get footnote's numbering ok, for it was displaying a symbol, at first. I got something like this:
renewcommandthempfootnote{arabic{mpfootnote}} %so it will show numbers instead of symbols
begin{figure}
begin{minipage}{textwidth}
setcounter{mpfootnote}{1} % sets footnote's starting number within this minipage to 1
...
caption{Captionfootnotemark.}
footnotetext{Foot notes}
end{minipage}
end{figure}
This was the only way I was able to have image and footnote on the same page, with desired number. afterpage
solution sent the whole image far away from expected, and the others gave me a footnote text on the page right before my image...
add a comment |
The only way I could get this working, in my case, was using @Leo Liu's answer (in this same topic https://tex.stackexchange.com/a/10182/35364), plus this workaround to get footnote's numbering ok, for it was displaying a symbol, at first. I got something like this:
renewcommandthempfootnote{arabic{mpfootnote}} %so it will show numbers instead of symbols
begin{figure}
begin{minipage}{textwidth}
setcounter{mpfootnote}{1} % sets footnote's starting number within this minipage to 1
...
caption{Captionfootnotemark.}
footnotetext{Foot notes}
end{minipage}
end{figure}
This was the only way I was able to have image and footnote on the same page, with desired number. afterpage
solution sent the whole image far away from expected, and the others gave me a footnote text on the page right before my image...
add a comment |
The only way I could get this working, in my case, was using @Leo Liu's answer (in this same topic https://tex.stackexchange.com/a/10182/35364), plus this workaround to get footnote's numbering ok, for it was displaying a symbol, at first. I got something like this:
renewcommandthempfootnote{arabic{mpfootnote}} %so it will show numbers instead of symbols
begin{figure}
begin{minipage}{textwidth}
setcounter{mpfootnote}{1} % sets footnote's starting number within this minipage to 1
...
caption{Captionfootnotemark.}
footnotetext{Foot notes}
end{minipage}
end{figure}
This was the only way I was able to have image and footnote on the same page, with desired number. afterpage
solution sent the whole image far away from expected, and the others gave me a footnote text on the page right before my image...
The only way I could get this working, in my case, was using @Leo Liu's answer (in this same topic https://tex.stackexchange.com/a/10182/35364), plus this workaround to get footnote's numbering ok, for it was displaying a symbol, at first. I got something like this:
renewcommandthempfootnote{arabic{mpfootnote}} %so it will show numbers instead of symbols
begin{figure}
begin{minipage}{textwidth}
setcounter{mpfootnote}{1} % sets footnote's starting number within this minipage to 1
...
caption{Captionfootnotemark.}
footnotetext{Foot notes}
end{minipage}
end{figure}
This was the only way I was able to have image and footnote on the same page, with desired number. afterpage
solution sent the whole image far away from expected, and the others gave me a footnote text on the page right before my image...
edited Apr 13 '17 at 12:36
Community♦
1
1
answered May 23 '14 at 21:47
JufajardiniJufajardini
214
214
add a comment |
add a comment |
I use minipage
, with protect
before footnote
. The footnote text appears right below the figure. This combines several solutions above, the result is quite simple and robust.
The optional argument of caption
, viz., [Short caption]
is needed if your document also contains a listoffigures
instruction. If your document does not feature a List of Figures, you can omit the optional argument.
begin{figure}
centering
begin{minipage}{1.textwidth}
%renewcommandfootnoterule{} % optional removing footnote bar
centering
includegraphics[width=.7linewidth]{somefile}
caption[Short caption]{Full captionprotectfootnote{Some footnote text}.}
label{fig:somefigure}
end{minipage}
end{figure}
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
add a comment |
I use minipage
, with protect
before footnote
. The footnote text appears right below the figure. This combines several solutions above, the result is quite simple and robust.
The optional argument of caption
, viz., [Short caption]
is needed if your document also contains a listoffigures
instruction. If your document does not feature a List of Figures, you can omit the optional argument.
begin{figure}
centering
begin{minipage}{1.textwidth}
%renewcommandfootnoterule{} % optional removing footnote bar
centering
includegraphics[width=.7linewidth]{somefile}
caption[Short caption]{Full captionprotectfootnote{Some footnote text}.}
label{fig:somefigure}
end{minipage}
end{figure}
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
add a comment |
I use minipage
, with protect
before footnote
. The footnote text appears right below the figure. This combines several solutions above, the result is quite simple and robust.
The optional argument of caption
, viz., [Short caption]
is needed if your document also contains a listoffigures
instruction. If your document does not feature a List of Figures, you can omit the optional argument.
begin{figure}
centering
begin{minipage}{1.textwidth}
%renewcommandfootnoterule{} % optional removing footnote bar
centering
includegraphics[width=.7linewidth]{somefile}
caption[Short caption]{Full captionprotectfootnote{Some footnote text}.}
label{fig:somefigure}
end{minipage}
end{figure}
I use minipage
, with protect
before footnote
. The footnote text appears right below the figure. This combines several solutions above, the result is quite simple and robust.
The optional argument of caption
, viz., [Short caption]
is needed if your document also contains a listoffigures
instruction. If your document does not feature a List of Figures, you can omit the optional argument.
begin{figure}
centering
begin{minipage}{1.textwidth}
%renewcommandfootnoterule{} % optional removing footnote bar
centering
includegraphics[width=.7linewidth]{somefile}
caption[Short caption]{Full captionprotectfootnote{Some footnote text}.}
label{fig:somefigure}
end{minipage}
end{figure}
edited Dec 20 '18 at 16:58
Mico
278k31380769
278k31380769
answered Dec 20 '18 at 6:29
THNTHN
1235
1235
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
add a comment |
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
1
1
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
@Mico yes, a short caption is needed for the list of figure, updated.
– THN
Dec 20 '18 at 9:36
1
1
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
You're absolutely right!
– Mico
Dec 20 '18 at 16:58
add a comment |
The first table in the documentation of the ctable package is a good example, having footnotes in the caption as well as in the table cells. Works for figures, too.
add a comment |
The first table in the documentation of the ctable package is a good example, having footnotes in the caption as well as in the table cells. Works for figures, too.
add a comment |
The first table in the documentation of the ctable package is a good example, having footnotes in the caption as well as in the table cells. Works for figures, too.
The first table in the documentation of the ctable package is a good example, having footnotes in the caption as well as in the table cells. Works for figures, too.
answered Jan 13 '15 at 22:37
Wybo DekkerWybo Dekker
4961311
4961311
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%2f10181%2fusing-footnote-in-a-figures-caption%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
the uk faq has long had an ‘answer’ covering this problem. let me/us know if it works for you!
– wasteofspace
Dec 30 '14 at 10:13