Advertisement

IEEE Trans latex模版写的作者为什么都在一列

阅读量:

写下这个问题应该存在多种解决方案,在本博客中写下自己的解决方案

要解决的问题:

作者全排在一列上了:

在这里插入图片描述

对应的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}
    \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}
    }
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    
    AI写代码

原因分析:

拟采用的文种类型为期刊即使用\texttt{IEEEtran}中的\texttt{lettersize}和\texttt{journal}选项组合如\documentclass[lettersize,journal]{IEEEtran}完成文章排版对于前者的写作方式建议采用\texttt{conference}选项配置如\documentstyle[conference]{IEEEtran}这样可以避免出现排版错误的问题以下图所示当采用会议文类时生成的文章作者排列效果会更加合理

在这里插入图片描述

解决办法:

用期刊类作者名写法:

复制代码
    \author{Michael~Shell,~\IEEEmembership{Member,~IEEE,}
        John~Doe,~\IEEEmembership{Fellow,~OSA,}
        and~Jane~Doe,~\IEEEmembership{Life~Fellow,~IEEE}% <-this % stops a space
    \thanks{M. Shell was with the Department
    of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta,
    GA, 30332 USA e-mail: (see http://www.michaelshell.org/contact.html).}% <-this % stops a space
    \thanks{J. Doe and J. Doe are with Anonymous University.}% <-this % stops a space
    \thanks{Manuscript received April 19, 2005; revised August 26, 2015.}}
    
    
      
      
      
      
      
      
      
      
    
    AI写代码

如果是要写的信息只有:名字、学校、ORCID,那也可以这样写:

复制代码
    ……
    \usepackage{orcidlink}
    ……
    \author{Name\IEEEauthorrefmark{1}\,\orcidlink{0000-0000-0000-0000},
    Name\IEEEauthorrefmark{2}\,\orcidlink{0000-0000-0000-0000},
    \IEEEauthorblockA{\IEEEauthorrefmark{1}University, Location}\ 
    \IEEEauthorblockA{\IEEEauthorrefmark{2}University, Location}
    }
    
    
      
      
      
      
      
      
      
      
    
    AI写代码

全部评论 (0)

还没有任何评论哟~