GeneralCounter Style for further Footnote System

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

Counter Style for further Footnote System

Post by pippipalma »

Hello,

I use manyfoot to create a second footnote system, for which I wish to have an alphalph counter style. In order to have alphalph work properly with manyfoot, I write this.

Code: Select all

\DeclareNewFootnote{B}
\renewcommand{\thefootnoteB}{\alphalph{\value{footnoteB}}}
However, if I insert a label within a footnoteB (\label{noteB:lab}), when I call \ref{noteB:lab}, I get the arabic counter of the footnote, instead of its alphalph version.

Can you help me to fix the problem?


Thanks and best regards!
Giuseppe
Last edited by cgnieder on Thu Feb 28, 2013 9:54 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.

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Counter Style for further Footnote System

Post by cgnieder »

Please always give a Infominimal working example! The following works fine:

Code: Select all

\documentclass{article}
\usepackage{alphalph}
\usepackage{manyfoot}
\DeclareNewFootnote{B}
\renewcommand{\thefootnoteB}{\alphalph{\value{footnoteB}}}

\begin{document}

Text\footnoteB{test\label{fn:test}} see footnote~\ref{fn:test}

\end{document}
Regards
site moderator & package author
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

Re: Counter Style for further Footnote System

Post by pippipalma »

I'm sorry, I was sure I've tried it...

Thanks!
Giuseppe
Post Reply