使用两个不同的标记引用同一个脚注

使用两个不同的标记引用同一个脚注

我想让两个不同的脚注标记指向同一个脚注。我希望页面底部的脚注为“标记 1,标记 2 文本”,而不是“标记 1 文本”换行符“标记 2 文本”。我知道这不是推荐的做法,但这是针对特定情况的。

\documentclass{article}
\usepackage{hyperref}


\title{Example}
\author{Example Author 1 \thanks{footnote text} %
    \and Example Author 2 \thanks{footnote text}
}
\begin{document}
\maketitle

\end{document}

答案1

您可以尝试以下操作:

\documentclass{article}
\usepackage{hyperref}


\title{Example}
\author{Example Author 1 \footnotemark[1] %
    \and Example Author 2 \footnotemark[2] }

\begin{document}
\maketitle
\newcounter{mycounter}
\renewcommand{\thefootnote}{\fnsymbol{mycounter}}
\footnotetext[1]{\makeatletter\setcounter{footnote}{0}\renewcommand{\thefootnote}{\fnsymbol{footnote}}{\footnotemark[1]},{\footnotemark[2]}\makeatother  my text}
\setcounter{footnote}{0}\renewcommand{\thefootnote}{\arabic{footnote}}

\newpage
Here will be another footenote\footnote{test}
\end{document}

这只是一个技巧,但如果你在同一页上没有其他脚注,它就会起作用

以下是扉页:

技巧脚注

相关内容