LyX ⇒ Footnote numbering
Footnote numbering
It resets at the beginning of new chapter.
I'd like it to continue.
For example - Chapter I has five footnotes, numbered 1-5.
Chapter II has three footnoes and I'd like them to be 6, 7 and 8, but LyX (in KOMA-book) changes them to 1, 2 and 3 again.
any solutions?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Footnote numbering
Code: Select all
\usepackage{chngcntr}
\counterwithout{footnote}{chapter}
Re: Footnote numbering
Within document I still have doubled and tripled and multiplied numbering.
Is this possible to change? (just asking)
PS I just discovered that this happens in Document Class (book KOMA script) and it works normally in simple article, so I'm guessing I'd need to change something in KOMA script, right?
Re: Footnote numbering
Footnote numbering
To change this sort of numbering in the LyX interface, you have to either change the LyX layout file used in your LyX document (Document > Settings > Document Class > Document Class), or you have to add it as a local layout (Document > Settings > Local Layout). See the LyX Customization Guide for documentation on LyX layout syntax, etc.
To get the numbering to be continuous across chapters, you can add this in your Local Layout:
Code: Select all
Counter footnote
Within part
LabelString "\arabic{footnote}"
End
Hope this helps someone else late to the party like me!