Estou tentando imitar os seguintes fechamentos como vistos, por exemplo, no seguinte trecho:
O seguinte MWE fornece uma aproximação à primeira parte do encerramento; mas é o segundo - que parece ser justificado à esquerda e centrado - que está me causando mais problemas.
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}
que produz
Alguém pode sugerir como posso fazer com que as três linhas que começam com “The London Oratory” se assemelhem ao trecho acima? Obrigado.
Responder1
Você está tabular
no lugar errado.
\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}
Responder2
Algo junto com isso? Envolvendo o texto em um minipage
ambiente.
\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}
Responder3
Só por diversão: também tentei \hangindent
e \handafter
, mas usar \rightskip
foi mais fácil.
\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}