Trying to use MakePerPagefootnote kills the build of my LaTeX doc
Clash Royale CLAN TAG#URR8PPP
The standard LaTeX footnote behavior is to mark footnotes using superscript numbers. I can't use that, since all of my citations are superscript numbers. What I'd like is for my footnotes to be marked with symbols, and for the set of symbols to reset on each page (eg the first footnote on a page should always be marked with *
). To make this happen I added the following to one of my .sty
files:
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
However, these lines break my build. When I run the make
command and my makefile
gets to the pdflatex
step, every footnote after the 7th one now raises an error of the form:
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.502 ... the topic of enhanced samplingfootnote{
Technically, Kahn et al., ...
If I comment out those lines, everything builds just fine, though of course then the footnotes are wrong. If I comment out just the MakePerPagefootnote
, then errors don't begin until after the 8th footnote. Either way, it seems like the MakePerPagefootnote
directive is being ignored, and that LaTeX is running out of footnote symbols.
I've used the above approach to get symbol footnotes in previous projects. The difference seems to be that before I was writing/building my docs using Texpad, whereas now I have a manual makefile
build. So obviously there's something wrong with/missing from my makefile
. Here's what the contents of the makefile
look like:
fname=main
$fname.pdf: $fname.tex
thesis_header.tex
abstract/abstract.tex
committee/committee.tex
acknowledgments/acknowledgments.tex
thesis_intro/thesis_intro.tex
bib/thesis_intro.bib
eces_chapter/error_control_of_enhanced_sampling.tex
bib/error_control_of_enhanced_sampling.bib
conclusion_chapter/conclusion_chapter.tex
if [ -e $fname.aux ];
then
rm $fname.aux;
fi;
pdflatex $fname
bibtex $fname
bibtex $fname1-blx
bibtex $fname2-blx
# Add more if you have more chapters
pdflatex $fname
pdflatex $fname
cp $fname.pdf PhD_Thesis.pdf
open PhD_Thesis.pdf
clean:
...
open:
open $fname.pdf
edit:
open $fname.tex
All of the footnote errors occur during the first call to pdflatex
. At the end of that first call to pdflatex
, an (incomplete) pdf is produced, and the build halts with another error message:
make: *** [main.pdf] Error 1
This project is a PhD thesis, so I'm working off a template (written by another student a few years ago) that meets my school/library's formatting requirements (basically, some weird wide margins + the output has to be PDF/A). I didn't write the makefile
, nor do I particularly understand it, I just substituted the .tex
/.bib
filenames with my own. The makefile
doesn't resemble other example LaTeX makefile
's that I was able to find on the internet, so I'm at a loss as how to fix it. Anyone familiar enough with the perpage
package and/or similar footnote issues who can point me in the right direction?
If you want more details, the entire set of sources for my thesis are in a public repo here.
footnotes labels makefile
|
show 2 more comments
The standard LaTeX footnote behavior is to mark footnotes using superscript numbers. I can't use that, since all of my citations are superscript numbers. What I'd like is for my footnotes to be marked with symbols, and for the set of symbols to reset on each page (eg the first footnote on a page should always be marked with *
). To make this happen I added the following to one of my .sty
files:
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
However, these lines break my build. When I run the make
command and my makefile
gets to the pdflatex
step, every footnote after the 7th one now raises an error of the form:
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.502 ... the topic of enhanced samplingfootnote{
Technically, Kahn et al., ...
If I comment out those lines, everything builds just fine, though of course then the footnotes are wrong. If I comment out just the MakePerPagefootnote
, then errors don't begin until after the 8th footnote. Either way, it seems like the MakePerPagefootnote
directive is being ignored, and that LaTeX is running out of footnote symbols.
I've used the above approach to get symbol footnotes in previous projects. The difference seems to be that before I was writing/building my docs using Texpad, whereas now I have a manual makefile
build. So obviously there's something wrong with/missing from my makefile
. Here's what the contents of the makefile
look like:
fname=main
$fname.pdf: $fname.tex
thesis_header.tex
abstract/abstract.tex
committee/committee.tex
acknowledgments/acknowledgments.tex
thesis_intro/thesis_intro.tex
bib/thesis_intro.bib
eces_chapter/error_control_of_enhanced_sampling.tex
bib/error_control_of_enhanced_sampling.bib
conclusion_chapter/conclusion_chapter.tex
if [ -e $fname.aux ];
then
rm $fname.aux;
fi;
pdflatex $fname
bibtex $fname
bibtex $fname1-blx
bibtex $fname2-blx
# Add more if you have more chapters
pdflatex $fname
pdflatex $fname
cp $fname.pdf PhD_Thesis.pdf
open PhD_Thesis.pdf
clean:
...
open:
open $fname.pdf
edit:
open $fname.tex
All of the footnote errors occur during the first call to pdflatex
. At the end of that first call to pdflatex
, an (incomplete) pdf is produced, and the build halts with another error message:
make: *** [main.pdf] Error 1
This project is a PhD thesis, so I'm working off a template (written by another student a few years ago) that meets my school/library's formatting requirements (basically, some weird wide margins + the output has to be PDF/A). I didn't write the makefile
, nor do I particularly understand it, I just substituted the .tex
/.bib
filenames with my own. The makefile
doesn't resemble other example LaTeX makefile
's that I was able to find on the internet, so I'm at a loss as how to fix it. Anyone familiar enough with the perpage
package and/or similar footnote issues who can point me in the right direction?
If you want more details, the entire set of sources for my thesis are in a public repo here.
footnotes labels makefile
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the*
is getting skipped, and the first footnote is using the†
symbol.
– tel
Jan 12 at 21:01
@DavidCarlisle I know the problem has something to do with themakefile
, at least. All of the info I've found onMakePerPagefootnote
suggest that it requires two passes ofpdflatex
to work correctly. Is there some way to just make themakefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single.tex
file alongside amakefile
.
– tel
Jan 12 at 21:12
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27
|
show 2 more comments
The standard LaTeX footnote behavior is to mark footnotes using superscript numbers. I can't use that, since all of my citations are superscript numbers. What I'd like is for my footnotes to be marked with symbols, and for the set of symbols to reset on each page (eg the first footnote on a page should always be marked with *
). To make this happen I added the following to one of my .sty
files:
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
However, these lines break my build. When I run the make
command and my makefile
gets to the pdflatex
step, every footnote after the 7th one now raises an error of the form:
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.502 ... the topic of enhanced samplingfootnote{
Technically, Kahn et al., ...
If I comment out those lines, everything builds just fine, though of course then the footnotes are wrong. If I comment out just the MakePerPagefootnote
, then errors don't begin until after the 8th footnote. Either way, it seems like the MakePerPagefootnote
directive is being ignored, and that LaTeX is running out of footnote symbols.
I've used the above approach to get symbol footnotes in previous projects. The difference seems to be that before I was writing/building my docs using Texpad, whereas now I have a manual makefile
build. So obviously there's something wrong with/missing from my makefile
. Here's what the contents of the makefile
look like:
fname=main
$fname.pdf: $fname.tex
thesis_header.tex
abstract/abstract.tex
committee/committee.tex
acknowledgments/acknowledgments.tex
thesis_intro/thesis_intro.tex
bib/thesis_intro.bib
eces_chapter/error_control_of_enhanced_sampling.tex
bib/error_control_of_enhanced_sampling.bib
conclusion_chapter/conclusion_chapter.tex
if [ -e $fname.aux ];
then
rm $fname.aux;
fi;
pdflatex $fname
bibtex $fname
bibtex $fname1-blx
bibtex $fname2-blx
# Add more if you have more chapters
pdflatex $fname
pdflatex $fname
cp $fname.pdf PhD_Thesis.pdf
open PhD_Thesis.pdf
clean:
...
open:
open $fname.pdf
edit:
open $fname.tex
All of the footnote errors occur during the first call to pdflatex
. At the end of that first call to pdflatex
, an (incomplete) pdf is produced, and the build halts with another error message:
make: *** [main.pdf] Error 1
This project is a PhD thesis, so I'm working off a template (written by another student a few years ago) that meets my school/library's formatting requirements (basically, some weird wide margins + the output has to be PDF/A). I didn't write the makefile
, nor do I particularly understand it, I just substituted the .tex
/.bib
filenames with my own. The makefile
doesn't resemble other example LaTeX makefile
's that I was able to find on the internet, so I'm at a loss as how to fix it. Anyone familiar enough with the perpage
package and/or similar footnote issues who can point me in the right direction?
If you want more details, the entire set of sources for my thesis are in a public repo here.
footnotes labels makefile
The standard LaTeX footnote behavior is to mark footnotes using superscript numbers. I can't use that, since all of my citations are superscript numbers. What I'd like is for my footnotes to be marked with symbols, and for the set of symbols to reset on each page (eg the first footnote on a page should always be marked with *
). To make this happen I added the following to one of my .sty
files:
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
However, these lines break my build. When I run the make
command and my makefile
gets to the pdflatex
step, every footnote after the 7th one now raises an error of the form:
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.502 ... the topic of enhanced samplingfootnote{
Technically, Kahn et al., ...
If I comment out those lines, everything builds just fine, though of course then the footnotes are wrong. If I comment out just the MakePerPagefootnote
, then errors don't begin until after the 8th footnote. Either way, it seems like the MakePerPagefootnote
directive is being ignored, and that LaTeX is running out of footnote symbols.
I've used the above approach to get symbol footnotes in previous projects. The difference seems to be that before I was writing/building my docs using Texpad, whereas now I have a manual makefile
build. So obviously there's something wrong with/missing from my makefile
. Here's what the contents of the makefile
look like:
fname=main
$fname.pdf: $fname.tex
thesis_header.tex
abstract/abstract.tex
committee/committee.tex
acknowledgments/acknowledgments.tex
thesis_intro/thesis_intro.tex
bib/thesis_intro.bib
eces_chapter/error_control_of_enhanced_sampling.tex
bib/error_control_of_enhanced_sampling.bib
conclusion_chapter/conclusion_chapter.tex
if [ -e $fname.aux ];
then
rm $fname.aux;
fi;
pdflatex $fname
bibtex $fname
bibtex $fname1-blx
bibtex $fname2-blx
# Add more if you have more chapters
pdflatex $fname
pdflatex $fname
cp $fname.pdf PhD_Thesis.pdf
open PhD_Thesis.pdf
clean:
...
open:
open $fname.pdf
edit:
open $fname.tex
All of the footnote errors occur during the first call to pdflatex
. At the end of that first call to pdflatex
, an (incomplete) pdf is produced, and the build halts with another error message:
make: *** [main.pdf] Error 1
This project is a PhD thesis, so I'm working off a template (written by another student a few years ago) that meets my school/library's formatting requirements (basically, some weird wide margins + the output has to be PDF/A). I didn't write the makefile
, nor do I particularly understand it, I just substituted the .tex
/.bib
filenames with my own. The makefile
doesn't resemble other example LaTeX makefile
's that I was able to find on the internet, so I'm at a loss as how to fix it. Anyone familiar enough with the perpage
package and/or similar footnote issues who can point me in the right direction?
If you want more details, the entire set of sources for my thesis are in a public repo here.
footnotes labels makefile
footnotes labels makefile
edited Jan 12 at 21:04
tel
asked Jan 12 at 20:55
teltel
208126
208126
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the*
is getting skipped, and the first footnote is using the†
symbol.
– tel
Jan 12 at 21:01
@DavidCarlisle I know the problem has something to do with themakefile
, at least. All of the info I've found onMakePerPagefootnote
suggest that it requires two passes ofpdflatex
to work correctly. Is there some way to just make themakefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single.tex
file alongside amakefile
.
– tel
Jan 12 at 21:12
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27
|
show 2 more comments
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the*
is getting skipped, and the first footnote is using the†
symbol.
– tel
Jan 12 at 21:01
@DavidCarlisle I know the problem has something to do with themakefile
, at least. All of the info I've found onMakePerPagefootnote
suggest that it requires two passes ofpdflatex
to work correctly. Is there some way to just make themakefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single.tex
file alongside amakefile
.
– tel
Jan 12 at 21:12
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the
*
is getting skipped, and the first footnote is using the †
symbol.– tel
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the
*
is getting skipped, and the first footnote is using the †
symbol.– tel
Jan 12 at 21:01
@DavidCarlisle I know the problem has something to do with the
makefile
, at least. All of the info I've found on MakePerPagefootnote
suggest that it requires two passes of pdflatex
to work correctly. Is there some way to just make the makefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single .tex
file alongside a makefile
.– tel
Jan 12 at 21:12
@DavidCarlisle I know the problem has something to do with the
makefile
, at least. All of the info I've found on MakePerPagefootnote
suggest that it requires two passes of pdflatex
to work correctly. Is there some way to just make the makefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single .tex
file alongside a makefile
.– tel
Jan 12 at 21:12
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27
|
show 2 more comments
2 Answers
2
active
oldest
votes
The problem has nothing to do with the make file. It is caused by the fact that LaTeX processes the input past the end of a page (for example, up to the end of the current paragraph) before it knows there is a page full of text, so the on the first pass through the document you have already processed some footnotes that will eventually end up on page 2 before makeperpage
"knows" they are not all on page 1.
makeperpage
works fine with numbered footnotes, because it is very unlikely to run out of numbers during the first pass through the document!
During the first pass, makeperpage
remembers where the page breaks actually were, and uses that information to produce the correct footnote symbols on the second pass.
A brute force way to fix this is just to turn the error message into a warning. Insert the following into the preamble of your .tex
input file, before begindocument
:
makeatletter
gdef@ctrerr%
@latex@warningCounter too large
makeatother
The "standard" version of LaTeX uses @latex@error
not @latex@warning
here.
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
add a comment |
the expected behaviour is to get an error on the 10th, some code you have not shown is presumably using two footnotes somewhere.
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
produces
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 10footnote
zz
?
However fnsymbol
is a trivial macro that can easily be extended, the default definition is
def@fnsymbol#1%
ifcase#1or TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
so you could use
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
makeatletter
def@fnsymbol#1%
ifcase#1or
TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
makeatother
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of makingperpage
correctly reset the symbols on each page, so I had to go with his answer.
– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final@ctrerr
byarabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel
– David Carlisle
Jan 12 at 22:10
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%2f469875%2ftrying-to-use-makeperpagefootnote-kills-the-build-of-my-latex-doc%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
The problem has nothing to do with the make file. It is caused by the fact that LaTeX processes the input past the end of a page (for example, up to the end of the current paragraph) before it knows there is a page full of text, so the on the first pass through the document you have already processed some footnotes that will eventually end up on page 2 before makeperpage
"knows" they are not all on page 1.
makeperpage
works fine with numbered footnotes, because it is very unlikely to run out of numbers during the first pass through the document!
During the first pass, makeperpage
remembers where the page breaks actually were, and uses that information to produce the correct footnote symbols on the second pass.
A brute force way to fix this is just to turn the error message into a warning. Insert the following into the preamble of your .tex
input file, before begindocument
:
makeatletter
gdef@ctrerr%
@latex@warningCounter too large
makeatother
The "standard" version of LaTeX uses @latex@error
not @latex@warning
here.
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
add a comment |
The problem has nothing to do with the make file. It is caused by the fact that LaTeX processes the input past the end of a page (for example, up to the end of the current paragraph) before it knows there is a page full of text, so the on the first pass through the document you have already processed some footnotes that will eventually end up on page 2 before makeperpage
"knows" they are not all on page 1.
makeperpage
works fine with numbered footnotes, because it is very unlikely to run out of numbers during the first pass through the document!
During the first pass, makeperpage
remembers where the page breaks actually were, and uses that information to produce the correct footnote symbols on the second pass.
A brute force way to fix this is just to turn the error message into a warning. Insert the following into the preamble of your .tex
input file, before begindocument
:
makeatletter
gdef@ctrerr%
@latex@warningCounter too large
makeatother
The "standard" version of LaTeX uses @latex@error
not @latex@warning
here.
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
add a comment |
The problem has nothing to do with the make file. It is caused by the fact that LaTeX processes the input past the end of a page (for example, up to the end of the current paragraph) before it knows there is a page full of text, so the on the first pass through the document you have already processed some footnotes that will eventually end up on page 2 before makeperpage
"knows" they are not all on page 1.
makeperpage
works fine with numbered footnotes, because it is very unlikely to run out of numbers during the first pass through the document!
During the first pass, makeperpage
remembers where the page breaks actually were, and uses that information to produce the correct footnote symbols on the second pass.
A brute force way to fix this is just to turn the error message into a warning. Insert the following into the preamble of your .tex
input file, before begindocument
:
makeatletter
gdef@ctrerr%
@latex@warningCounter too large
makeatother
The "standard" version of LaTeX uses @latex@error
not @latex@warning
here.
The problem has nothing to do with the make file. It is caused by the fact that LaTeX processes the input past the end of a page (for example, up to the end of the current paragraph) before it knows there is a page full of text, so the on the first pass through the document you have already processed some footnotes that will eventually end up on page 2 before makeperpage
"knows" they are not all on page 1.
makeperpage
works fine with numbered footnotes, because it is very unlikely to run out of numbers during the first pass through the document!
During the first pass, makeperpage
remembers where the page breaks actually were, and uses that information to produce the correct footnote symbols on the second pass.
A brute force way to fix this is just to turn the error message into a warning. Insert the following into the preamble of your .tex
input file, before begindocument
:
makeatletter
gdef@ctrerr%
@latex@warningCounter too large
makeatother
The "standard" version of LaTeX uses @latex@error
not @latex@warning
here.
answered Jan 12 at 21:34
alephzeroalephzero
1,4121413
1,4121413
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
add a comment |
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
Haha, awesome. Thank you. Latex: so much spaghetti that for the first time silencing an error message was the actually correct fix for an error.
– tel
Jan 12 at 21:48
add a comment |
the expected behaviour is to get an error on the 10th, some code you have not shown is presumably using two footnotes somewhere.
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
produces
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 10footnote
zz
?
However fnsymbol
is a trivial macro that can easily be extended, the default definition is
def@fnsymbol#1%
ifcase#1or TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
so you could use
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
makeatletter
def@fnsymbol#1%
ifcase#1or
TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
makeatother
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of makingperpage
correctly reset the symbols on each page, so I had to go with his answer.
– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final@ctrerr
byarabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel
– David Carlisle
Jan 12 at 22:10
add a comment |
the expected behaviour is to get an error on the 10th, some code you have not shown is presumably using two footnotes somewhere.
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
produces
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 10footnote
zz
?
However fnsymbol
is a trivial macro that can easily be extended, the default definition is
def@fnsymbol#1%
ifcase#1or TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
so you could use
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
makeatletter
def@fnsymbol#1%
ifcase#1or
TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
makeatother
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of makingperpage
correctly reset the symbols on each page, so I had to go with his answer.
– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final@ctrerr
byarabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel
– David Carlisle
Jan 12 at 22:10
add a comment |
the expected behaviour is to get an error on the 10th, some code you have not shown is presumably using two footnotes somewhere.
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
produces
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 10footnote
zz
?
However fnsymbol
is a trivial macro that can easily be extended, the default definition is
def@fnsymbol#1%
ifcase#1or TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
so you could use
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
makeatletter
def@fnsymbol#1%
ifcase#1or
TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
makeatother
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
the expected behaviour is to get an error on the 10th, some code you have not shown is presumably using two footnotes somewhere.
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
produces
! LaTeX Error: Counter too large.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.18 10footnote
zz
?
However fnsymbol
is a trivial macro that can easily be extended, the default definition is
def@fnsymbol#1%
ifcase#1or TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
so you could use
documentclassarticle
renewcommand*thefootnotefnsymbolfootnote
usepackageperpage
MakePerPagefootnote
makeatletter
def@fnsymbol#1%
ifcase#1or
TextOrMathtextasteriskcentered *or
TextOrMath textdagger daggeror
TextOrMath textdaggerdbl ddagger or
TextOrMath textsection mathsectionor
TextOrMath textparagraph mathparagraphor
TextOrMath textbardbl %
makeatother
begindocument
1footnotezz
2footnotezz
3footnotezz
4footnotezz
5footnotezz
6footnotezz
7footnotezz
8footnotezz
9footnotezz
10footnotezz
11footnotezz
enddocument
answered Jan 12 at 21:36
David CarlisleDavid Carlisle
487k4111271871
487k4111271871
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of makingperpage
correctly reset the symbols on each page, so I had to go with his answer.
– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final@ctrerr
byarabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel
– David Carlisle
Jan 12 at 22:10
add a comment |
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of makingperpage
correctly reset the symbols on each page, so I had to go with his answer.
– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final@ctrerr
byarabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel
– David Carlisle
Jan 12 at 22:10
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
I just doubled up characters here but of course you can use any symbols that you have available.
– David Carlisle
Jan 12 at 21:39
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of making
perpage
correctly reset the symbols on each page, so I had to go with his answer.– tel
Jan 12 at 21:50
Thanks for the info. I was wondering how to extend the set of symbols. However, alephzero directly addresses the issue of making
perpage
correctly reset the symbols on each page, so I had to go with his answer.– tel
Jan 12 at 21:50
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
@tel I can probably survive without the points:-)
– David Carlisle
Jan 12 at 22:01
if you change the final
@ctrerr
by arabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel– David Carlisle
Jan 12 at 22:10
if you change the final
@ctrerr
by arabic#1
then it will use numbers when it runs out of symbols and never give an error. @tel– David Carlisle
Jan 12 at 22:10
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%2f469875%2ftrying-to-use-makeperpagefootnote-kills-the-build-of-my-latex-doc%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
Odd that you get an error for 7th I'd expect it to be 9th, the standard fnsymbol counter style only has 9 symbols, although you can easily extend it.
– David Carlisle
Jan 12 at 21:00
it would be simpler to answer if you had posted a small but complete document with 7 footnotes on a page that gave the error (none of the makefile is related to the error message)
– David Carlisle
Jan 12 at 21:01
The 7th one works, while the 8th one has the error. Looking through the incomplete pdf output it seems like somehow the
*
is getting skipped, and the first footnote is using the†
symbol.– tel
Jan 12 at 21:01
@DavidCarlisle I know the problem has something to do with the
makefile
, at least. All of the info I've found onMakePerPagefootnote
suggest that it requires two passes ofpdflatex
to work correctly. Is there some way to just make themakefile
power through and do the second pass instead of halting on error? Also, I'll see if I can create the same error with just a single.tex
file alongside amakefile
.– tel
Jan 12 at 21:12
you shouldn't get an error
– David Carlisle
Jan 12 at 21:27