ACM Proceedings의 이메일이 중복됩니다.

ACM Proceedings의 이메일이 중복됩니다.

나는 다음을 사용하는 논문을 쓰고 있습니다.ACM 회의 진행 과정 수업 acm_proc_article-sp.cls. 저자는 5명인데, 우리가 보낸 모든 이메일은 저자 목록에서 겹칠 정도로 길어 보입니다. 클래스 파일과 함께 제공된 참조 예제에서 수정된 문제의 아주 최소한의 예는 다음과 같습니다.

\documentclass{acm_proc_article-sp}

\def\sharedaffiliation{%
\end{tabular}
\begin{tabular}{c}}
%
\begin{document}

\title{ACM Sample Proceedings Paper in LaTeX by authors with long addresses}

\numberofauthors{5}
\author{
% 1st. author
\alignauthor
Ben Trovato\\
       \email{[email protected]}
% 2nd. author
\alignauthor
G.K.M. Tobin\\
       \email{[email protected]}
\and  % use '\and' if you need 'another row' of author names
% 3rd. author
\alignauthor Lars Th{\o}rv{\"a}ld\\
       \email{[email protected]}
% 4th. author
\alignauthor Lawrence P. Leipuner\\
       \email{[email protected]}
% 5th. author
\alignauthor Sean Fogarty\\
       \email{[email protected]}
\and
\sharedaffiliation       
       \affaddr{Institute for Clarity in Documentation}\\
       \affaddr{P.O. Box 1212}\\
       \affaddr{Dublin, Ohio 43017-6221}\\
}
\maketitle

\balancecolumns
\end{document}

를 야기하는 이메일 주소가 겹치는 것을 보여주는 렌더링된 페이지의 스냅샷

이 문제를 처리할 수 있는 좋은 방법이 있나요? 이 문제는 이전 질문에서 설명되었지만답변, 저자 수 변경은 도움이 되지 않았습니다. \numberofauthors{3}위와 동일한 결과를 제공합니다. 공백을 두는 동안 \numberofauthors{2}세 번째 저자는 페이지를 벗어납니다.

답변1

기사를 작성할 때 얼마나 많은 여유가 있는지는 모르겠지만 자신만의 tabular레이아웃을 사용하여 5명의 작성자를 설정할 수 있습니다.

여기에 이미지 설명을 입력하세요

\documentclass{acm_proc_article-sp}

\def\sharedaffiliation{%
  \end{tabular}
  \begin{tabular}{c}}

\title{ACM Sample Proceedings Paper in LaTeX by authors with long addresses}

%\numberofauthors{1}
\author{
  \begin{tabular}{c}
    % 1st. author
    Ben Trovato \\
    \email{[email protected]}
  \end{tabular}%
  \begin{tabular}{c}
    % 2nd. author
    G.K.M. Tobin \\
    \email{[email protected]}
  \end{tabular} \\[10pt]
  \begin{tabular}{c}
    % 3rd. author
    Lars Th{\o}rv{\"a}ld\\
    \email{[email protected]}
  \end{tabular}
  \begin{tabular}{c}
    % 4th. author
    Lawrence P. Leipuner\\
    \email{[email protected]}
  \end{tabular}
  \begin{tabular}{c}
    % 5th. author
    Sean Fogarty\\
    \email{[email protected]}
  \end{tabular}
  \and
  \sharedaffiliation
     \affaddr{Institute for Clarity in Documentation} \\
     \affaddr{P.O.\ Box 1212} \\
     \affaddr{Dublin, Ohio 43017-6221}
}

\begin{document}

\maketitle

\end{document}

정의 \numberofauthors는 작성자 블록을 적절하게 세분화하는 데 사용됩니다.결정된너비. 그러나 이는 긴(저자 또는) 주소에는 작동하지 않습니다. 위의 제안은 기술적으로 전체 \textwidth.

답변2

내가 발견한 한 가지 해결책은이 답변, 이메일 주소의 마침표에 줄 바꿈이 활성화됩니다. 따라서:

\author{
  \alignauthor Ben Trovato\\
    \email{ben.\linebreak[0]trovato@long.\linebreak[0]university.edu}
  \alignauthor G.K.M. Tobin\\
     \email{some.\linebreak[0]one@long.\linebreak[0]university.edu}
  \and
  \alignauthor Lars Th{\o}rv{\"a}ld\\
    \email{[email protected]}
  \alignauthor Lawrence P. Leipuner\\
    \email{[email protected]}
  \alignauthor Sean Fogarty\\
    \email{[email protected]}
  \and
  \sharedaffiliation       
    \affaddr{Institute for Clarity in Documentation}\\
    \affaddr{P.O. Box 1212}\\
    \affaddr{Dublin, Ohio 43017-6221}\\
}

준다 여기에 이미지 설명을 입력하세요

관련 정보