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이 동일한 기호 *를 갖고 Society for Industrial and Applied Mathematics가 한 번만 표시되기를 원합니다.

답변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

보시다시피, 원하는 대로 표시하기 위해 반복하려는 음표(및 해당 기호)의 번호(표시 순서)를 아는 것이 비결입니다.

관련 정보