Advertisement

IEEE trans 论文模板作者位置样式更改

阅读量:

初始模板中,当作者内容多时,可以正常的显示为3*3:

复制代码
 %初始代码

    
 \author{\IEEEauthorblockN{1\textsuperscript{st} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{2\textsuperscript{nd} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{3\textsuperscript{rd} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{4\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{5\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{6\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 }

但是,当作者信息少时,就不能3*3显示,可以使用下列的latex代码实现,涉及到 \and\ 区别,

参考地址中作者“命途搁浅”的解答更改:https://www.zhihu.com/question/352144429/answer/1204568230

复制代码
 %该对latex代码,新的对齐方式

    
 \author{\IEEEauthorblockN{1\textsuperscript{st} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \ 
    
 \IEEEauthorblockN{4\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{2\textsuperscript{nd} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \ 
    
 \IEEEauthorblockN{5\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \and
    
 \IEEEauthorblockN{3\textsuperscript{rd} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 \ 
    
 \IEEEauthorblockN{6\textsuperscript{th} Given Name Surname}
    
 \IEEEauthorblockA{\textit{dept. name of organization (of Aff.)} \ 
    
 \textit{name of organization (of Aff.)}\ 
    
 City, Country \ 
    
 email address or ORCID}
    
 }

其中通过可以添加空白的一行:\ \hspace*{\fill} \

参考:<>

全部评论 (0)

还没有任何评论哟~