From 1f937cf1fe14a2b75b7655cd9573ac3c4fe118e8 Mon Sep 17 00:00:00 2001 From: Logan Cox Date: Fri, 18 Mar 2016 14:48:38 -0500 Subject: [PATCH] Refine footenote numbering and order. * add footnote counter reset to EOAchapter command * re-order footnote command DeclareNewFootnote calls to reorder footnote sets in output --- TeX/pre_eoa.tex | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/TeX/pre_eoa.tex b/TeX/pre_eoa.tex index 1a621d9..16faa6c 100755 --- a/TeX/pre_eoa.tex +++ b/TeX/pre_eoa.tex @@ -372,6 +372,8 @@ } % New command for numbered chapters \newcommand{\EOAchapter}[2]{ + \setcounter{footnotealph}{0} + \setcounter{footnotearabic}{0} \chapter[#2]{#2} \chaptermark{#1} \ifthenelse{\boolean{anthology}}{ @@ -616,14 +618,22 @@ %%%%%%%%%%%% Footnote Sets -% + \usepackage{etex} \usepackage{bigfoot} \reserveinserts{50} -\DeclareNewFootnote{Alph}[alph] -\DeclareNewFootnote{Arabic}[arabic] +\DeclareNewFootnote{arabic}[arabic] +\DeclareNewFootnote{alph}[alph] + + + +\usepackage{alphalph} +\renewcommand{\thefootnotealph}{\emph{\alphalph{\value{footnotealph}}}} + +\newcommand{\EOAfnalph}[1]{\protect\footnotealph{#1}} +\newcommand{\EOAfnarabic}[1]{\protect\footnotearabic{#1}} + + -\newcommand{\EOAfnarabic}[1]{\protect\footnoteArabic{#1}} -\newcommand{\EOAfnalph}[1]{\protect\footnoteAlph{#1}} %%%%%%%%%%%% Footnote Sets --end