私は Beamer ポスター形式を使用しています。テキストを揃えるために、\usepackage{ragged2e}
と を使用しています\justifying
。
Beamer ポスター形式には、と\institute {}
の直後にセクションがあります。この特定のセクションを使用して概要を保存し、同じテキストを両端揃えにするつもりです。しかし、コマンドが として機能しません。\title
\author
\justifying
\institute {\justifying .... text ....}
ただし、コマンドはセクション\justifying
内のテキストに対して機能します。\begin{document}
何かご意見はございますか?
答え1
最小限の動作例が提供されていないため、Overleaf にある例を使用しました。私の回答で問題が解決しない場合は、回答を提供してください。
配置には、\parbox
内でを使用できます\institute
。 の幅を使用しました.5\linewidth
が、もちろん、好きな幅を選択できます。また、\linewidth
機関名のみが線幅全体をカバーするようにすることもできます。
\documentclass{beamer}
\usepackage{beamerposter}
\usetheme{confposter}
\title{Why don't people add a MWE?}
\author{Paulinho van Duck}
\institute{\parbox{.5\linewidth}{Duck fan club. Duck fan club was founded by Paulo Roberto Massa Cereda many years ago, and now it spreads all over the world. I have to add some more text to have an institute name with many lines, but I don't know what to write, so I'm writing some nonsense.}}
\begin{document}
\begin{frame}[t]
\justifying A minimal working example is always necessary!
A minimal working example is always necessary!
A minimal working example is always necessary!
A minimal working example is always necessary!
A minimal working example is always necessary!
A minimal working example is always necessary!
A minimal working example is always necessary!
\end{frame}
\end{document}