GeneralIn-paragraph footnotes with bigfoot

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

In-paragraph footnotes with bigfoot

Post by pippipalma »

Hello,
within bigfoot documentation it is said that:
Footnotes can be formatted in separate paragraphs, or be run into a single paragraph. The choice is made per footnote apparatus, but can be overridden for single footnotes.
However, while it is clear that \DeclareNewFootnote[para]{B}[alph] sets in-paragraph mode for the whole footnoteB apparatus, I'm not able to find how to choose, footnote-by-footnote, between in-paragraph and normal modes.

Do you have any suggestion?

Thanks and best regards,
Giuseppe

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

In-paragraph footnotes with bigfoot

Post by cgnieder »

As I understand it from the source of the documentation footnotes defined with the para option can be set in a apargraph of their own using a + variant:

Code: Select all

\documentclass[12pt]{article}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{B}
\begin{document}
Text\footnoteB{a paragraph footnote}
text\footnoteB{another one}
text\footnoteB+{this is in a new paragraph}
\end{document}
Regards
site moderator & package author
pippipalma
Posts: 23
Joined: Mon Aug 20, 2012 5:12 pm

In-paragraph footnotes with bigfoot

Post by pippipalma »

It is exactly what I needed, thanks!
There is still an issue (shown in the following MWE) I'm not able to understand:

Code: Select all

\documentclass{book}
\usepackage{bigfoot}
\DeclareNewFootnote[para]{B}%[alph] % please uncomment the [alph] option to see the difference
\begin{document}
Text\footnoteB{a paragraph footnote}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB+{new paragraph}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB{another one}
text\footnoteB+{this is in a new paragraph}
\end{document}
Can you explain the difference between the two cases (in particular, I should use alphalph style, but it can be obtained by adding \renewcommand{\thefootnoteB}{\alphalph{\value{footnoteB}}})?
Is there any way to format alphabetic footnote paragraphs as they are in presence of numerical footnotemarks?

Thanks and best regards,
Giuseppe
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Re: In-paragraph footnotes with bigfoot

Post by cgnieder »

I am not at home right now, so I can't test thoroughly now but this seems like a bug to me.

Regards
site moderator & package author
Post Reply