
Como obter essas automação
"se uma nota curta e única em uma página deve ser centralizada. Defina várias notas muito curtas na mesma linha com 3 EMs # entre"
como a saída abaixo
1. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
2. short footnote 3. short footnote 4. shortfootnote
5. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text
Responder1
Obigfoot
O pacote apresenta (além da macro padrão aprimorada \footnote
) as macros \footnote+
que forçam notas de rodapé simples (mesmo quando o estilo padrão é para
) e \footnote-
que forçam notas de rodapé no estilo de parágrafo (mesmo quando o padrão é plain
). As notas de rodapé que incluem equações, citações ou ambientes de lista exibidos devem estar em estilo simples; portanto, se o seu estilo padrão for para
, você deverá usar \footnote+
para as respectivas notas.
\documentclass{article}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{default}
\newcommand*{\sometext}{Hello, here is some text without a meaning. This
text should show, how a printed text will look like at this place.
If you read this text, you will get no information.}
\begin{document}
\null\vfill% just for the example
First paragraph.\footnote+{%
\sometext
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
}
Second paragraph.\footnote{A short footnote.}
Third paragraph.\footnote{Another short footnote.}
Fourth paragraph.\footnote+{%
\sometext
\begin{quote}
\sometext
\end{quote}
}
\end{document}