
Cómo conseguir estas automatizaciones
"Si una nota corta en una página debe estar centrada, coloque varias notas muy cortas en la misma línea con 3 EM # entre"
como el siguiente resultado
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
Respuesta1
Elbigfoot
El paquete incluye (además de la macro estándar mejorada \footnote
) las macros \footnote+
que fuerzan notas al pie simples (incluso cuando el estilo predeterminado es para
) y \footnote-
que fuerzan notas al pie de estilo párrafo (incluso cuando el estilo predeterminado es plain
). Las notas a pie de página que incluyan ecuaciones, citas o entornos de listas mostrados deben estar en estilo sencillo; por lo tanto, si tu estilo predeterminado es para
, deberás utilizarlo \footnote+
para las notas respectivas.
\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}