GeneralProblems with symbols in footnotes in memoir document

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
New Guest
Posts: 2
Joined: Tue Jul 28, 2009 11:16 am

Problems with symbols in footnotes in memoir document

Post by New Guest »

I have been trying to use \fnsymbols instead of Arabic numbering of my footnotes (I assume the numbering resets on every page if you use fnsymbols?). So far I have not been able to make it work. Here's my code:

Code: Select all

\documentclass[a4paper,11pt,article,oneside]{memoir}


\title{Help!} 
\renewcommand{\thefootnote}{\fnsymbol{\footnote}}

\begin{document}



It doesn't work. \footnote{I hope you can help!}


\end{document}
This generates 100 errors! Seems very strange I think. Please help!

Recommended reading 2024:

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

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Problems with symbols in footnotes in memoir document

Post by gmedina »

Hi,

in your code you are using an extra backslash:

\renewcommand{\thefootnote}{\fnsymbol{\footnote}}

Simply suppress that backslash:

Code: Select all

\renewcommand{\thefootnote}{\fnsymbol{footnote}}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply