라텍스에서 견적을 *정확하게* 가운데에 수직으로 맞추는 방법은 무엇입니까?

라텍스에서 견적을 *정확하게* 가운데에 수직으로 맞추는 방법은 무엇입니까?

나는 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

GuM이 제안한 것 외에도 \vspace*{-1\topskip plus 1fill}조판 콘텐츠를 \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하고 minipagean 내부를 묶었습니다 \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}

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

관련 정보