IEEE Tran LaTeX 模板:附属块布局

IEEE Tran LaTeX 模板:附属块布局

我想使用IEEE 翻译 LaTeX 课程我的一个会议论文。需要关联三个不同的机构,我现在正在尝试设计标题更具吸引力和如图所示的功能性时尚2据我所知,提供的唯一设计元素是\and影响布局的命令。但这并不能带来令人满意的结果,因为关联块没有正确对齐。

目前,所有机构都一列一列地排列,占用了大量空间,导致页眉右侧有大量未使用区域。您有什么建议/经验可以分享吗?

先感谢您!

所需布局

答案1

我最终采用的是 IEEE tran 模板,代码如下。看上去简洁,节省空间。

\author{
\IEEEauthorblockN{{\bf John Doe}\IEEEauthorrefmark{1}\IEEEauthorrefmark{2}\IEEEauthorrefmark{3}\\ \tt\footnotesize [email protected]} \and
\IEEEauthorblockN{{\bf Jane Doe}\IEEEauthorrefmark{1}\\ \tt\footnotesize [email protected]}
\and
\IEEEauthorblockA{\IEEEauthorrefmark{1}Affiliate 1, Adress ...}
\IEEEauthorblockA{\IEEEauthorrefmark{2}Affiliate 2, Adress ...}
\IEEEauthorblockA{\IEEEauthorrefmark{3}Affiliate 3, Adress ...}
}

答案2

我用最终结果解决了原始问题,能够保留原始格式和对齐,不需要额外的包,并且不限制相邻从属关系的数量。

\author{
    \IEEEauthorblockN{
        Author1 Name\IEEEauthorrefmark{1}\IEEEauthorrefmark{2}, 
        Author2 Name\IEEEauthorrefmark{3}, and 
        Author3 Name\IEEEauthorrefmark{1}\IEEEauthorrefmark{2}}
    \IEEEauthorblockA{
        \begin{tabular}{cc}
            \begin{tabular}{@{}c@{}}
                \IEEEauthorrefmark{1}
                    Affiliation1,\\
                    Affiliation1\\
                \IEEEauthorrefmark{2}
                    Affiliation1,\\
                    Affiliation2,\\
                    Affiliation2\\
                    \{author1, author2\}@some.domain.com
            \end{tabular} & \begin{tabular}{@{}c@{}}
                \IEEEauthorrefmark{3}
                    Affiliation3,\\
                    Affiliation3,\\
                    Affiliation3,\\
                    [email protected]
            \end{tabular}
        \end{tabular}
    }
}

答案3

我按照原始问题的要求做了,但只针对两个从属关系。关键是\and在作者块后使用两个连续的。请参见下面的丑陋技巧。请注意\hspace{1cm}第一个从属关系块的整个块相对于页面居中。hspace 大小应根据第一个从属关系块中的最长行而变化。

\author{
\IEEEauthorblockN{Author1\IEEEauthorrefmark{1}\IEEEauthorrefmark{2},
    Author2\IEEEauthorrefmark{2},
    Author3\IEEEauthorrefmark{1} and
    Author4\IEEEauthorrefmark{2}}
\and\and
\IEEEauthorblockA{
    \hspace{1cm}\IEEEauthorrefmark{1}Affiliation1\\
    \hspace{1cm} Affiliation1\\
    \hspace{1cm}Affiliation1\\
    \hspace{1cm}\{Author1, Author3\}@affiliation.com}
\and
\IEEEauthorblockA{
    \IEEEauthorrefmark{2}Affiliation2\\
    Affiliation2\\
    Affiliation2\\
    \{Author2, Author4\}@affiliation.fr}
}

相关内容