在幻灯片标题中添加更多行

在幻灯片标题中添加更多行

在 LaTeX Beamer 演示文稿中,在第一张幻灯片中,如何添加地址行?下面是我用于制作第一张幻灯片(标题)的代码行。在日期命令行之后,我想添加地址行。

我已经使用了断线命令\\,但是我输入的内容出现在幻灯片的顶角,但我希望它出现在机构名称之后。

\documentclass[handout,t]{beamer}
\begin{document}
\title[Climate Impacts Research Centre]{CIRCs'Activities}
\subtitle{38th annual Meeting}
\institute[]{\Climate Impacts Research Centre}
\date{June - 2017}
\would like to add one more line for adress of the institute
\author[38th annual Meeting]{SWAT and Jhon}

\end{document} 

答案1

这有帮助吗?

姆韦

\documentclass[handout,t]{beamer}
\begin{document}
\begin{frame}
\title[Climate Impacts Research Centre]{CIRCs'Activities}
\subtitle{38th annual Meeting}
\institute[CIRS]{Climate Impacts Research Centre\par\bigskip
\inst{1} Somewhere University\par
\inst{2} Another university} 
\date{June - 2017}
\author[38th annual Meeting]{SWAT\inst{1} and Jhon\inst{1}}
\titlepage  
Would like to add one more ?
\end{frame}
\end{document} 

相关内容