中央揃えになっている手紙の結び部分を左揃えにする方法

中央揃えになっている手紙の結び部分を左揃えにする方法

たとえば、次の抜粋に見られるような結びの表現を真似しようとしています。

ここに画像の説明を入力してください

次の MWE は結びの最初の部分に近いものを示していますが、左揃えかつ中央揃えになっているように見える 2 番目の部分が私にとって最も問題です。

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」で始まる 3 行を上記の抜粋に似たものにするにはどうしたらよいか、どなたか提案していただけませんか。よろしくお願いします。

答え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

楽しみのために: と も試してみました\hangindent\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}

関連情報