脚注 脚注

脚注 脚注

我想为另一个脚注添加一个脚注。我到处搜索,尝试了很多愚蠢的想法。我想到的最接近的方法是

\footnote{some footnote text\footnote{secondary footnote text}}

这可以正确显示次要脚注,但“次要脚注文本”则不行。

我的文档缩短到最基本的最低限度:

\documentclass[a4paper,12pt,twoside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[polutonikogreek,ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage{geometry}
\usepackage{microtype}
\DisableLigatures{}
\usepackage{siunitx}
\usepackage{soul}
\usepackage{graphicx}

%% some NEW COMMANDS
%...
\newcommand{\greek}{\selectlanguage{polutonikogreek}}
\renewcommand*{\raggedsection}{\centering}
\DeclareTOCStyleEntry{undottedtocline}{section}

\mainmatter

\begin{document}

%some parts, chapters and so on....

\footnote{some footnote text\footnote{secondary footnote text}}

\end{document}

答案1

使用footnotemark并将footnotetext文本放置在实际注释之外。

\documentclass[a4paper,12pt,twoside]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}


\begin{document}


This\footnote{Note 1\footnotemark}\footnotetext{Text for note 2} And this\footnote{Note 3.}

\end{document}

相关内容