像是 SDM 中的作者隸屬關係

像是 SDM 中的作者隸屬關係

我正在使用此模板作為 SDM 論文http://www.siam.org/proceedings/macros/soda2e.all

我有多個作者,其中一些作者來自同一機構。我如何在作者部分顯示此資訊。範例文件顯示來自不同機構的不同作者

\author{Corey Gray\thanks{Society for Industrial and Applied Mathematics.} \\
\and 
Tricia Manning\thanks{Society for Industrial and Applied Mathematics.}}

我希望 Corey Grat 和 Tricial Manning 具有相同的符號 *,並且工業與應用數學學會僅顯示一次

答案1

好吧,為了回答您的問題,我將使用您在問題中提到的類別的程式碼範例:

\documentclass[twoside,leqno,twocolumn]{article}  
\usepackage{ltexpprt} 

\begin{document}


%\setcounter{chapter}{2} % If you are doing your chapter as chapter one,
%\setcounter{section}{3} % comment these two lines out.

\title{\Large SIAM/ACM Preprint Series Macros for
Use With LaTeX\thanks{Supported by GSF grants ABC123, DEF456, and GHI789.}}
\author{Corey Gray\thanks{Society for Industrial and Applied Mathematics.} \\
\and 
Tricia Manning\footnotemark[2]} %{Society for Industrial and Applied Mathematics.}}
\date{}

\maketitle


%\pagenumbering{arabic}
%\setcounter{page}{1}%Leave this line commented out.

\begin{abstract} \small\baselineskip=9pt This is the text of my abstract. It is a brief
description of my
paper, outlining the purposes and goals I am trying to address.\end{abstract}




\section{Problem Specification.}In this paper, we consider the solution of the $N \times
N$ linear
system
\begin{equation} \label{e1.1}
A x = b
\end{equation}
where $A$ is large, sparse, symmetric, and positive definite.  We consider
the direct solution of (\ref{e1.1}) by means of general sparse Gaussian
elimination.  In such a procedure, we find a permutation matrix $P$, and
compute the decomposition
\[
P A P^{t} = L D L^{t}
\]
where $L$ is unit lower triangular and $D$ is diagonal.
.
.
. 
etc.
\end{document}

其實技巧很簡單,我們只需要使用指令\footnotemark[<number>]。這<number>在註腳中介紹了參考文獻 不寫註腳

換句話說,根據您的問題片段的行,您可以使用相同的符號來命名來自同一機構的幾位作者,請使用:

\author{Corey Gray\thanks{Society for Industrial and Applied Mathematics.} \\
\and 
Tricia Manning\footnotemark[2]}

您將使用 ,而不是重複命令\thanks及其內容\footnotemark[]。之所以有這個數字,2是因為如果您選擇,則該腳註將具有與標題中1第一個腳註相同的符號。\thanks

正如您所看到的,訣竅是知道您想要重複顯示的註釋(及其符號)的數量(出現順序)。

相關內容