Hi,
I'm a bit lost and really hope to get some help here.
I want the following to work:
1.Get the long version of an acronym printed in the footnotes. [check]
2.Do this every time I use a acronym, but only once per page. [Once per page not working]
3.Reset Footnote numbers for every page - So every pages foot numbers start with counting with one again. [check]
I tried quite a lot without finding a solution and really hope to find someone, who is a lot better with Latex than me. The following is not close to working, but gives a minimized Code to refer to for a working example:
Code: Select all
\documentclass[10pt,a4paper]{article}\usepackage[utf8]{inputenc}\usepackage[footnote]{acronym}\usepackage{hyperref}\usepackage{perpage} %the perpage package\MakePerPage[1]{footnote} %the perpage package command\begin{document}\section*{Acronyms}\begin{acronym}[ECU]\acro{USA}{United States of America}\acro{UAE}{United Arabic Emirates}%[...]\end{acronym}\newpage\section{Text}The \acf{USA} are a country as well as the \acf{UAE}, but the \acf{USA} are bigger.\newpageThe \acf{USA} are still a country.\end{document}
Code: Select all
TextThe USA¹ are country as well as the UAE², but the USA¹ are bigger.___________________1 United States of America, 2 United Arabic EmiratesNext page:The UAE¹ are still a country.___________________1 United Arabic Emirates
Thanks in advance and Greetings
Tristan