제목 슬라이드의 한 줄에 여러 교육기관

제목 슬라이드의 한 줄에 여러 교육기관

beamer저는 서로 다른 기관에서 온 약 10명의 저자를 인정해야 하는 강연을 할 예정입니다 . 기본적으로 beamer한 줄에 여러 명의 저자를 넣지만 한 줄에 기관은 하나만 넣습니다. 다음은 최소한의 예입니다.

\documentclass{beamer}
\useoutertheme{infolines}
\title{Title}
\author{Me\inst{1} \and Someone\inst{2}}
\institute[short]{\inst{1} First \and \inst{2} Second}

\begin{document}
\maketitle
\end{document}

분명히 이 경우는 괜찮습니다. 나열된 기관은 두 개뿐입니다. 하지만 더 많이 추가하면 슬라이드 공간이 부족해집니다. 각 줄에 여러 기관을 배치할 수 있는 방법이 있습니까?

답변1

기본적으로 는 내에 \and줄 바꿈( 1em기술적으로 는 수직으로 건너뛰기)을 삽입하도록 설정되어 있습니다 . 이를 위해 이 수직 건너뛰기를 삽입하지 않는 자체 정의를 정의하세요.\\[1em]\institute\samelineand

여기에 이미지 설명을 입력하세요

\documentclass{beamer}
\useoutertheme{infolines}
\title{Title}
\author{Me\inst{1} \and Someone\inst{2} \and Someone else\inst{3}}
\institute[short]{\inst{1} First \samelineand \inst{2} Second \samelineand \inst{3} Third}
\newcommand{\samelineand}{\qquad}
\begin{document}
\maketitle
\end{document}

\samelineand위에서 는 과 동일하다고 정의했지만 \qquad필요한 대로 변경할 수 있습니다. 다시 를 사용하여 새로운 줄 바꿈을 삽입할 수 있습니다 \and.

관련 정보