たとえば、次の抜粋に見られるような結びの表現を真似しようとしています。
次の 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}