중앙에 있는 편지 마무리 부분을 왼쪽 정렬하는 방법

중앙에 있는 편지 마무리 부분을 왼쪽 정렬하는 방법

예를 들어 다음 발췌문에서 볼 수 있듯이 다음 마무리를 모방하려고 합니다.

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

다음 MWE는 마감의 첫 번째 부분에 대한 대략적인 내용을 제공합니다. 하지만 왼쪽 정렬과 중앙 정렬로 보이는 두 번째 문제가 나에게 가장 큰 문제를 안겨줍니다.

MWE:

\documentclass[12pt]{article}
\begin{document}

Our Blessed Saviour for His goodness to our Confraternity, and for our salvation through His Blood.

\vspace*{10pt}

\begin{flushright}
  \begin{tabular}{@{} l @{}}
    Your affectionate Servant and Father \\
    {\scshape{Frederick William Faber,}} \\
    Priest of the Oratory.
  \end{tabular}
\end{flushright}

\begin{flushleft}
\begin{center}
\begin{small}
The London Oratory. \\
Feast of the Conversion of St. Paul. \\
1860.
\end{small}
\end{center}
\end{flushleft}
\end{document}

생산하는

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

누군가 ``The London Oratory''로 시작하는 세 줄을 위의 발췌문과 비슷하게 만드는 방법을 제안할 수 있습니까? 감사합니다.

답변1

tabular당신은 잘못된 위치에 있습니다 .

\documentclass[12pt]{article}
\usepackage{baskervillef}

\begin{document}

Our Blessed Saviour for His goodness to our Confraternity,
and for our salvation through His Blood.

\vspace*{10pt}

\begin{flushright}
  Your affectionate Servant and Father\hspace*{1em} \\[1ex]
  \textsc{Frederick William Faber,}\hspace*{2em} \\[1ex]
  Priest of the Oratory.\hspace*{2em}
\end{flushright}

\begin{flushleft}\footnotesize
\begin{tabular}{@{}c@{}}
The London Oratory. \\
Feast of the Conversion of St. Paul. \\
1860.
\end{tabular}
\end{flushleft}

\end{document}

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

답변2

뭔가요? 환경 에 텍스트를 래핑합니다 minipage.

\documentclass[12pt]{article}
\begin{document}

Our Blessed Saviour for His goodness to our Confraternity, and for our salvation through His Blood.

\vspace*{10pt}

\begin{flushright}
  \begin{tabular}{@{} l @{}}
    Your affectionate Servant and Father \\
    {\scshape{Frederick William Faber,}} \\
    Priest of the Oratory.
  \end{tabular}
\end{flushright}

\begin{flushleft}
\begin{minipage}{0.5\textwidth} %Here!
\begin{center}
\begin{small}
The London Oratory. \\
Feast of the Conversion of St. Paul. \\
1860.
\end{small}
\end{center}
\end{minipage}
\end{flushleft}
\end{document}

답변3

그냥 재미로: \hangindentand 도 시도해 보았지만 \handafter사용이 \rightskip더 쉬웠습니다.

\documentclass{article}
\usepackage{showframe}
\begin{document}

\vbox{\raggedleft
\rightskip=1em
Your affectionate Servant and Father\par
\rightskip=2em
{\scshape{Frederick William Faber,}} \\
Priest of the Oratory.}

\end{document}

관련 정보