Estou usando o formato Beamer Poster. Para justificar o texto, estou usando \usepackage{ragged2e}
e \justifying
.
Beamer Poster Format tem uma \institute {}
seção imediatamente após \title
e \author
. Estou utilizando esta seção específica para armazenar o resumo e agora pretendo justificar o mesmo texto. Mas \justifying
o comando não está funcionando como \institute {\justifying .... text ....}
.
O \justifying
comando está funcionando para o texto dentro da \begin{document}
seção.
Alguma opinião?
Responder1
Como você não fornece um exemplo prático mínimo, usei um exemplo encontrado no Overleaf. Se minha resposta não resolver seu problema, forneça-a.
Para o alinhamento, você pode usar um \parbox
dentro do seu arquivo \institute
. Usei uma largura de .5\linewidth
, mas, claro, você pode escolher quem quiser. Também apenas \linewidth
para que o nome do instituto cubra toda a largura da linha.
\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}