Я подумал, что завершу вечер быстрым вертикальным центрированием текста в LaTeX. Но, конечно, LaTeX так не работает :/.
Я взялэтотпростой подход.
Вот мой MWE:
\documentclass{article}
\begin{document}
\thispagestyle{empty}
\setlength{\parindent}{0cm} % this kills the indentation
\Huge
\vspace*{\fill}
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
\vspace*{\fill}
\end{document}
Это делаетнетвыдает текст, выровненный по вертикали, и я понятия не имею, почему.
Вероятно, я упускаю что-то очевидное.
Обновление 1: Я пыталсяисправлениепрокомментировал @GuM, но это, похоже, не помогло.
\documentclass{article}
\begin{document}
\thispagestyle{empty}
\setlength{\parindent}{0cm} % this kills the indentation
\Huge
\vspace*{-1\topskip plus 1fill}
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
\par
\vspace*{\fill}
\end{document}
решение1
В дополнение к \vspace*{-1\topskip plus 1fill}
предложению GuM, я поместил набранный контент в \vbox
. Обратите внимание, что контент центрирован, предполагая, что нижняя часть \vbox
- этобазовый уровеньнижней строки текста.
\documentclass{article}
\usepackage[pass,showframe]{geometry}
\begin{document}
\thispagestyle{empty}
\setlength{\parindent}{0cm} % this kills the indentation
\Huge
\vspace*{-1\topskip plus 1fill}
\vbox{
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.}
\vspace*{\fill}
\end{document}
Чтобы центрировать текст с учетом выносных элементов в нижней строке текста, я использовал a minipage
вместо a \vbox
и заключил его minipage
в a \fbox
:
\documentclass{article}
\usepackage[pass,showframe]{geometry}
\begin{document}
\thispagestyle{empty}
\setlength{\parindent}{0cm} % this kills the indentation
\Huge
\vspace*{-1\topskip plus 1fill}
\fboxrule=0pt\relax
\fboxsep=-\fboxrule\relax
\fbox{\begin{minipage}{\textwidth}
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
Arbeiten von zu Hause erlaubt es mir, Job und Familie problemlos zu vereinbaren.
\end{minipage}}
\vspace*{\fill}
\end{document}