I'm looking for a way to justify all my text in a beamer transparencies. I know the
Code: Select all
\usepackage{ragged2e}
\justify
There is away to justify all the slides with only ONE command, for example, in the preamble?
Bests
Code: Select all
\usepackage{ragged2e}
\justify
Code: Select all
\let\oldenumerate=\enumerate
\renewenvironment{enumerate}{\oldenumerate\raggedright}{\endlist}
Code: Select all
\usepackage{caption}
\captionsetup{justification={justified}}
Code: Select all
\usepackage{ragged2e}
\let\olditem=\item%
\renewcommand{\item}{\olditem \justifying}%
Code: Select all
\def\center{\trivlist \centering\item\relax}
\def\endcenter{\endtrivlist}