Estoy tratando de imitar los siguientes cierres como se ve, por ejemplo, en el siguiente extracto:
El siguiente MWE proporciona una aproximación a la primera parte del cierre; pero es el segundo, que parece estar centrado y justificado hacia la izquierda, el que me está dando más 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 produce
¿Alguien puede sugerirme cómo puedo hacer que las tres líneas que comienzan con "El Oratorio de Londres" se parezcan al extracto anterior? Gracias.
Respuesta1
Tienes el tabular
en el lugar equivocado.
\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}
Respuesta2
¿Algo parecido a esto? Envolviendo el texto en un minipage
entorno.
\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}
Respuesta3
Solo por diversión: también probé \hangindent
y \handafter
, pero usarlo \rightskip
fue más 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}