IOS-Book-Article.cls:一行中的地址

IOS-Book-Article.cls:一行中的地址

是否可以将 \address[C]、\address[D] 和 \address[E] 设置在一行中,我的意思是将所有 3 个地址都设置在一行中,而不是将每个地址都设置在一行中?谢谢。

\documentclass{IOS-Book-Article}

\begin{document}

\begin{frontmatter}              % The preamble begins here.

\title{Some definitions}
\author[A,B,C]{\fnms{John} \snm{Marc}}%
,
\author[B,D]{\fnms{Peter} \snm{Wolf}}
,
\author[B,E]{\fnms{Dean} \snm{Boy}}

\address[A]{University of \LaTeX, Higher Institute lab}
\address[B]{Some University}

\address[C]{\tt{[email protected]}}
\address[D]{\tt{[email protected]}}
\address[E]{\tt{[email protected]}}
\end{frontmatter}

\end{document}

答案1

我找到了一个简单的解决方案,使用 \mbox 命令如下:

\documentclass{IOS-Book-Article}

\begin{document}

\begin{frontmatter}              % The preamble begins here.

\title{Some definitions}
\author[A,B,C]{\fnms{John} \snm{Marc}}%
,
\author[B,D]{\fnms{Peter} \snm{Wolf}}
,
\author[B,E]{\fnms{Dean} \snm{Boy}}

\address[A]{University of \LaTeX, Higher Institute lab}
\address[B]{Some University}

\mbox{    
\address[C]{\tt{[email protected]}}
\address[D]{\tt{[email protected]}}
\address[E]{\tt{[email protected]}}}
\end{frontmatter}

\end{document}

相关内容