在作者姓名中添加所属机构

在作者姓名中添加所属机构

我正在使用\documentclass[11pt,twoside,openany,a4paper,final]{book}撰写文章。如何将所属机构添加到作者姓名中?

现在,我正在使用 overleafhttps://www.overleaf.com/10139084dvxtzsfkhcbf.main.tex包含很多包。

我使用\inputarticle[111.111]{ivanov}{I.\,O. Name, I.\,O. Name}时出现错误。还是我使用不正确?

在此处输入图片描述

答案1

您可以尝试一些简单的方法,例如:

\documentclass[11pt,twoside,openany,a4paper,final]{book}
\begin{document}
\frontmatter
\title{How to Structure a LaTeX Document}
\author{Andrew Roberts \\ Where I am From}
\date{December 2004}
\maketitle
\chapter{Preface}
\mainmatter
\chapter{First chapter}
\appendix
\chapter{First Appendix}
\backmatter
\chapter{Last note}
\end{document}

相关内容