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}間隔は空けられますが、3 番目の著者がページからはみ出てしまいます。

答え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}\\
}

与える ここに画像の説明を入力してください

関連情報