
각주 xetex에서 아래 코드 줄을 사용했습니다.
\renewcommand{\thefootnote}{\textit{\alph{footnote}}}
출력 표시
u2.22 Sabbath
v2.24 Deu 23.25
w2.25 1Sa 21.1-6
x2.26 Lev 24.5-9
y2.27 Deu 5.14
z 3.4 Luk 14.3
3.6 Mat 22.15-16
3.10 Mat 14.36
3.11 Luk 4.41
3.12 Mak 1.34
3.16 Jn 1.42
3.17 Luk 9.54
3.22 Mat 9.34; 10.25
a,b,c,d...z까지. 나중에는 표시되지 않습니다.\footnote
실제로 z가 끝난 후에는 aa,ab,ac.....az,ba,bb,bc...bz도 마찬가지로 시작되어야 합니다..
하지만 지금은 작동하지 않습니다.
실제 출력은 다음과 같이 표시됩니다
u2.22 Sabbath
v2.24 Deu 23.25
w2.25 1Sa 21.1-6
x2.26 Lev 24.5-9
y2.27 Deu 5.14
z3.4 Luk 14.3
aa3.6 Mat 22.15-16
ab3.10 Mat 14.36
ac3.11 Luk 4.41
ad3.12 Mak 1.34
ae3.16 Jn 1.42
af3.17 Luk 9.54
ag3.22 Mat 9.34; 10.25
아시는 분 계시길 바랍니다.
미리 감사드립니다.
답변1
alphalph
다음 선언과 함께 패키지를 사용하십시오 .
\renewcommand{\thefootnote}{\textit{\alphalph{\value{footnote}}}}
MWE:
\documentclass{article}
\usepackage{alphalph}
\renewcommand{\thefootnote}{\textit{\alphalph{\value{footnote}}}}
\begin{document}
\section{Footnotes}
\setcounter{footnote}{25}
Some text\footnote{test} and some more text\footnote{test}
\end{document}
산출: