Page LayoutTurn off French Footnote Style

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
exploded_funk
Posts: 3
Joined: Sat Feb 25, 2012 3:46 pm

Turn off French Footnote Style

Post by exploded_funk »

I'm using the babel package for a French thesis. But this affects the style of footnotes. It gives me footnote markers that are superscript in the main text and not superscript, followed by a point and a space, in the footnote text. How can I change them to superscript markers with no point and no space? I also want to indent the whole footnote text, either to match the paragraph indent of the body text or to have no indent at all.

I have no relevant commands in the preamble, so I guess that I use the defaults here. I have tried this.

Code: Select all

\footmarkstyle{\textsuperscript{#1}}
But it has no effect. I have also tried this

Code: Select all

\renewcommand\thefootnote{\textsuperscript{\arabic{footnote}}}
It gives me superscript markers of very small size, followed by point and space. I forgot to mention that I'm using the book memoir class.
Last edited by exploded_funk on Sat Feb 25, 2012 4:48 pm, edited 1 time in total.

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Turn off French Footnote Style

Post by localghost »

For an adequate problem description it is suggestive to add a minimal example to your question that is compilable as provided. Possible solutions are then easier to test and helpers don't need to build a complete document on their own. This increases your chance for good and fast answers significantly.

The babel manual contains with Section 29 a long passage with quite detailed descriptions of what the package does with the French language enabled and how to alter these settings. It suggests the \frenchbsetup command to modify the concerned settings.

Code: Select all

\documentclass[11pt,a4paper,frenchb]{memoir}
\usepackage[T1]{fontenc}
\usepackage{selinput}
\SelectInputMappings{
  aacute={á},
  ccedilla={ç},
  Euro={€}
}
\usepackage{babel}
\frenchbsetup{
  FrenchFootnotes=false,
  AutoSpaceFootnotes=false
}  

\begin{document}
  Main text\footnote{Footnote}
\end{document}
Further modifications to the footnotes can be done by the footmisc package and presumably by means of the memoir class itself.


Best regards and welcome to the board
Thorsten
exploded_funk
Posts: 3
Joined: Sat Feb 25, 2012 3:46 pm

Turn off French Footnote Style

Post by exploded_funk »

Thanks a lot for your answer. I think it works. The manual also refers to the command \StandardFootnotes.
Post Reply