Page LayoutFootnotes: Formatting the counter?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
MrGallagher
Posts: 5
Joined: Thu Mar 18, 2010 12:03 pm

Footnotes: Formatting the counter?

Post by MrGallagher »

Hey all,

I'm submitting my manuscript to a publisher that demands the size of the number in front of the individual footnotes be 12pt. How can I adjust for that?

I've considered adjusting \footnotesize, but that would disturb parts of the texts in the footnoes employing superscript as well, wouldn't it?

The document is using the standard book-class, and I'm employing the footmisc-package to create hanging footnotes.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Footnotes: Formatting the counter?

Post by Stefan Kottwitz »

Hi,

you could redefine \thefootnote using a font size command like

Code: Select all

\renewcommand*\thefootnote{\scriptsize\arabic{footnote}}
Stefan
LaTeX.org admin
MrGallagher
Posts: 5
Joined: Thu Mar 18, 2010 12:03 pm

Re: Footnotes: Formatting the counter?

Post by MrGallagher »

Thanks! That works great for adjusting the font size of the arabic numbers of the footnotes.

However, due to the fact that the numbering is still superscripted, the individual footnotes are now slighty separated from each other.

Would it be possible to align the arabic numbers with the regular text of the footnotes to prevent this separation from occurring?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Footnotes: Formatting the counter?

Post by Stefan Kottwitz »

Perhaps we could work it out if you would post a minimal working example showing how your footnotes look like and their alignment. At least footmisc is not standard and has some options.

Stefan
LaTeX.org admin
MrGallagher
Posts: 5
Joined: Thu Mar 18, 2010 12:03 pm

Footnotes: Formatting the counter?

Post by MrGallagher »

Thanks again for replying so quickly. After I noticed the scriptsize command also influenced the markers within the regular text body, I worked my way around the problem by transposing the whole manuscript to the memoir-class.

Afterwards:

Code: Select all

\footmarkstyle{\footnotesize{#1\hfill}}
\setlength{\footmarkwidth}{0,9cm}
\setlength{\footmarksep}{0,1cm}
did the trick!
Post Reply