与 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

如您所见,诀窍在于知道您想要重复显示的音符(及其符号)的编号(出现顺序)。

相关内容