
Considerar:
\documentclass[12pt]{book}
\usepackage{scalefnt,scalerel}
\begin{document}
\thispagestyle{empty}
{\begin{minipage}{5.0in}\leftskip\fill\rightskip-\leftskip\parfillskip\stretch{2}%
{\vstretch{1.05}{\huge{\scalefont{1.05}{\textbf{THE COMMONITORY}}}\footnote{{\scshape{Commonitory.}} I have retained the original title in its anglicised form, already familiar to English ears in connection with the name of Vincentius. Its meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to memory.'' Technically, it meant a Paper of Instructions given to a person charged with a commission, to assist his memory as to its details.}}}
\end{minipage}
\end{document}
com saída:
PERGUNTA: Por que a única nota de rodapé listadatrêsvezes? Além disso, como posso obter a nota de rodapé listada uma vez na parte inferior da página (em vez de diretamente abaixo do título) e com uma nota de rodapé 1 em vez dea?
Obrigado.
Responder1
Em primeiro lugar, não consigo reproduzir o seu problema. Com seu código, recebo:
e no log
aviso:
(\end occurred inside a group at level 1) ### simple group (level 1) entered at line 5 ({)
Isso ocorre porque o {
início da linha 5 nunca é fechado.
No entanto, existem vários outros problemas com o seu código. Parece que você está tentando usar \huge
um comando com argumento. Mas isso não está correto. \huge
é uma troca de fonte. Ele não lê um argumento, mas termina no final do grupo atual (no seu caso, o final da caixa usada por \vstretch
).
Eu também acho que você está usando \vstretch
apenas por causa da falta de um final de parágrafo após usar \huge
. Então IMHO \vstretch
também pode ser eliminado. Neste caso, o \huge
terminaria no grupo iniciado pelo {
atualmente antes do \vstretch
. Este grupo também não é necessário, mas encerraria a configuração do baselineskip de \huge
.
O minipage
também é relevante para a posição da saída da nota de rodapé. As notas de rodapé internas minipage
são sempre impressas no final e minipage
não no final da página. E para deixar isso mais claro, o estilo do número foi alterado.
Então, IMHO, você obteria o que deseja com código simplificado:
\documentclass[12pt]{book}
\begin{document}
\thispagestyle{empty}
{\centering\huge\textbf{THE COMMONITORY\footnote{{\scshape{Commonitory.}} I
have retained the original title in its anglicised form, already
familiar to English ears in connection with the name of Vincentius. Its
meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to
memory.'' Technically, it meant a Paper of Instructions given to a
person charged with a commission, to assist his memory as to its
details.}}\par}
\end{document}
Observe o \par
no final do grupo. É necessário usar todas as configurações de fonte \huge
(incluindo o baselineskip) para o texto enorme.
Se você realmente deseja esticar o texto, use algo como:
\documentclass[12pt]{book}
\usepackage{scalerel,scalefnt}
\begin{document}
\thispagestyle{empty}
{\centering\huge\vstretch{1.05}{\textbf{\scalefont{1.05}{THE COMMONITORY\footnotemark}}}\footnotetext{\textsc{Commonitory.} I
have retained the original title in its anglicised form, already
familiar to English ears in connection with the name of Vincentius. Its
meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to
memory.'' Technically, it meant a Paper of Instructions given to a
person charged with a commission, to assist his memory as to its
details.}\par}
\end{document}
BTW: Se esta não for uma formatação única, mas um tipo de seccionamento, você deve usar um pacote como titlesec
para configurar o comando de seccionamento correspondente, por exemplo, \chapter
, em vez de fazer marcação manual para cada título.