6 位作者,3 人组成 ACM Sig-proc 的共同附属团体

6 位作者,3 人组成 ACM Sig-proc 的共同附属团体

我必须创建一篇总共有 6 位作者的论文,前三位作者有一个共同的隶属关系,同样,后三位作者也有共同的隶属关系。

根据答案这个问题我一直尝试使用以下代码以美观的方式呈现它:

    \numberofauthors{6} %  in this sample file, there are a *total*
    % of EIGHT authors. SIX appear on the 'first-page' (for formatting
    % reasons) and the remaining two appear in the \additionalauthors section.



    \author{
          \alignauthor Ben King\\      
          \email{[email protected]}
    %
          \alignauthor Georgia Tobin\\     
          \email{[email protected]}
    %
          \alignauthor Gerald Murray\\    
          \email{[email protected]}
    %
          \sharedaffiliation
          \affaddr{Department of Electrical Engineering and Computer Science}  \\
          \affaddr{University of California, Berkeley }   \\
          \affaddr{Berkeley, CA 94720-1776 } \\
    % 
          \alignauthor Ben King\\      
          \email{[email protected]}
    %
          \alignauthor Georgia Tobin\\     
          \email{[email protected]}
    %
          \alignauthor Gerald Murray\\    
          \email{[email protected]}
    %
          \sharedaffiliation
          \affaddr{Department of Electrical Engineering and Computer Science}  \\
          \affaddr{University of California, Berkeley }   \\
          \affaddr{Berkeley, CA 94720-1776 }
    }

然而,正如您在下面的照片中看到的,结果相当混乱。

我如何才能有序地创建它?即对齐并居中。

在此处输入图片描述

答案1

改变这一点

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

为了这

\def\sharedaffiliation{%
\end{tabular}
\centering
\begin{tabular}{p{\linewidth}}\centering}

对于我,对于第二排作者来说,解决了这个问题。

答案2

\documentclass{sig-alternate}







%\usepackage{amssymb}
\setcounter{tocdepth}{3}

\usepackage{graphicx}
\usepackage{epstopdf}

\usepackage{%times,
            paralist,
            graphicx,
            comment,
            verbatim,
            color,
%
            tikz,
            calc,
            multirow
}
%\usepackage[official]{eurosym}
\usepackage[caption=false]{subfig}% or will mess up captioning...
%\usepackage{svg}%needs to come after subfig
\usepackage{hyperref}
\hypersetup{
  pdftitle={},
  pdfauthor={},
  pdfkeywords={},
  pageanchor=false,
  bookmarksnumbered,
  pdfstartview={FitH},
  colorlinks,
  citecolor=black,
  filecolor=black,
  linkcolor=black,
  urlcolor=black,
  breaklinks=true,
}

\graphicspath{{figs/}}


\usepackage{url}
\urldef{\mailsa}\path|{english,sibarani,scerri}@iai.uni-bonn.de|  
\urldef{\mailsb}\path|{g.buscher,f.bensberg}@hs-osnabrueck.de|    
\urldef{\mailsc}\path|[email protected]|   

\newcommand{\keywords}[1]{\par\addvspace\baselineskip
\noindent\keywordname\enspace\ignorespaces#1}

\newcommand{\etal}{~{\em et\,al.,}\,}
\newcommand{\saro}{{\em \sc the TSAR Ontology}}%only one of the styling command obeyed :S

\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;} 







\def\sharedaffiliation{%
\end{tabular}
\begin{tabular}{c}}
%
\begin{document}
%
% --- Author Metadata here ---
\conferenceinfo{SEMANTiCS '16,}{September 12-15^{th} Leipzig, Germany}
%\CopyrightYear{2007} % Allows default copyright year (20XX) to be over-ridden - IF NEED BE.
%\crdata{0-12345-67-8/90/01}  % Allows default copyright data (0-89791-88-6/97/05) to be over-ridden - IF NEED BE.
% --- End of Author Metadata ---

\title{{\ttlit ACM} SIG Proceedings Paper in LaTeX
Format\titlenote{(Produces the permission block, and
copyright information). For use with
SIG-ALTERNATE.CLS. Supported by ACM.}}


\title{Block Chain Technologies \& the Semantic Web: \\A Study in Symbiosis}

\numberofauthors{6} 
\author{
      \alignauthor S. Matthew English\\      
      \email{[email protected]}
%
      \alignauthor Elisa M. Sibarani\\     
      \email{[email protected]}
%
      \alignauthor Simon Scerri\\    
      \email{[email protected]}
%
      \sharedaffiliation
      \affaddr{Rheinische Friedrich-Wilhelms-Universit\"at Bonn}  \\
      \affaddr{Fraunhofer-Institut f\"ur Intelligente Analyse und Informationssysteme IAIS}   \\
      \affaddr{Germany}
%
\and % go to new row
%
      \alignauthor Elisa M. Sibarani\\     
      \email{[email protected]}
%
      \alignauthor S. Matthew English\\      
      \email{[email protected]}
%
      \alignauthor Simon Scerri\\    
      \email{[email protected]}
%
      \sharedaffiliation
      \affaddr{Rheinische Friedrich-Wilhelms-Universit\"at Bonn}  \\
      \affaddr{Fraunhofer-Institut f\"ur Intelligente Analyse und Informationssysteme IAIS}   \\
      \affaddr{Germany}
}


\date{30 July 1999}
% Just remember to make sure that the TOTAL number of authors
% is the number that will appear on the first page PLUS the
% number that will appear in the \additionalauthors section.

\maketitle

相关内容