如何在作者姓名旁邊加上註腳標記

如何在作者姓名旁邊加上註腳標記

我需要在作者姓名旁邊添加一個標記(例如,一顆星),並在底部添加一個帶有該標記的腳註。與作者姓名相似\footnote但在作者姓名處。

我使用的是 ACM 格式的文章。我發現以前的一些帖子建議使用\thanks,但這不會在作者姓名旁邊添加標記。

如何將標記新增為作者姓名的上標,並且該標記也顯示在腳註中?

這是我使用 \thanks 的腳本,它添加了腳註,但沒有附加標記或數字:

\documentclass[sigconf]{acmart}
\usepackage{array}
\usepackage{booktabs}
\usepackage{makecell, booktabs, caption}
\usepackage{footnote}   

\begin{document}

\author{Author}
\thanks{First author.}
\affiliation{
    \institution{Uni.}
    \city{C}
    \country{C}}
\email{[email protected]}

\title{Title}
\maketitle

\begin{abstract}
Abstract
\end{abstract}

\section{Section1}
Section.
\end{document}

答案1

您正在使用的文檔類別有一個內建函數,請查看手冊:http://ftp.math.purdue.edu/mirrors/ctan.org/macros/latex/contrib/acmart/acmart.pdf

如果您希望每個作者下方顯示從屬關係,請使用該\affiliation指令(依序:\author\orcid\affiliation \email)。

如果您希望從屬關係出現在腳註中(帶有腳註符號),請將affiliation命令替換為\additionalaffiliation。如果您這樣做,請確保將電子郵件放在隸屬關係區塊內。

如果您只需要註釋(例如感謝),您可以使用\authornote.

完整的 MWE:

\documentclass[sigconf]{acmart}
\usepackage{array}
\usepackage{booktabs}
\usepackage{makecell, booktabs, caption}
\usepackage{footnote}   

\begin{document}

\author{First Author}
\authornote{some other note}

\additionalaffiliation{
    \institution{Uni 1.}
    \city{City1}
    \country{Country1}
    \email{[email protected]}   
     }


\author{Second Author}

\additionalaffiliation{
    \institution{Uni 2.}
    \city{City2}
    \country{Country2}
    \email{[email protected]}  
     }



\title{Title}
\maketitle

\begin{abstract}
Abstract ...
\end{abstract}

\section{Section1}
Section.
\end{document}

相關內容