我有一份文件,其中有一个脚注(“脚注 1”),上面有一些特殊解释。在文件的后面,需要/想要引用这个特殊解释。在第二个例子中,我想到了一个脚注(“脚注 2”),它像往常一样位于页面底部,我只需在其中写“参见脚注 1”。
但是,我认为如果我可以简单地引用文中的脚注 1,而不是使用中间脚注 2,那就更好了。这可能吗?
我的失败尝试:
\documentclass[11pt]{article}
\begin{document}
London is in England\footnote{London is the capital city of England. \label{footnote 1}}.\\
...\\
London is a city\ref{footnote 1}.
\end{document}
一张图片胜过千言万语:
这是不好的做法吗?
答案1
如果你正在使用KOMA 脚本或者回忆录有一个特殊的宏\footref
。
如果您使用通常的article
课程,请使用\textsuperscript
。
以下 MWE 显示了可能性(我在问题中添加了@Anke 的评论):
\documentclass[11pt]{article} % scrartcl article memoir
\begin{document}
London is in England\footnote{London is the capital city of England. \label{footnote 1}}.
London is a city\textsuperscript{\ref{footnote 1}}.
London is a city$^{\ref{footnote 1}}$.
%London is a city\footref{footnote 1}. % Only for KOMA-Script or memoir
\end{document}