BibTeX, biblatex and bibersmart footnote citations with jurabib ?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
huckepick
Posts: 4
Joined: Mon Nov 30, 2009 12:46 am

smart footnote citations with jurabib ?

Post by huckepick »

Hello everybody,

I am trying to use jurabib for my citations. Generally it works very well with the following implementation:

Code: Select all

(preamble)

\usepackage{jurabib}
\jurabibsetup{super,authorformat=and,commabeforerest,see,pages=format,pages=test,bibformat=raggedright,authorformat=smallcaps, authorformat=year,dotafter=bibentry}
\renewcommand*{\jbcitationyearformat}[1]{(#1)}
\usepackage[multiple]{footmisc}
\jbedseplikecite

(body)

[...]

\cite{Arnott2005} % referring to an external bibtex entry 

[...]
The result is a footnote citation of {Arnott2005}. That's fine.

Now, my problem is - and maybe you can help me with that :

In case this citation appears several times in the text, every time I cite the reference a new footnote with exactly the same contents is created. So, it can happen that on the same printed page I have three footnotes with different footnote numbers but the same content.

It would look like this if cited three times on the same page:

Code: Select all

(body printed)

[...]1
[...]2
[...]3


(footnote printed)

1Arnott (2005).
2Arnott (2005).
3Arnott (2005).
What I am looking for is this:

A package or an option which does the following: Whenever I cite exactly the same contents and this citation shall be printed in a footnote AND these multiple identical citations happen to be printed on the same page, I'd like the package to refrain from creating a new footnote but instead referencing the already existing footnote number.

It should look like this if cited three times on the same page:

Code: Select all

(body printed)

[...]1
[...]1
[...]1


(footnote printed)

1Arnott (2005).
Alternatively, I would also be fine with the following result:

Code: Select all

(body printed)

[...]1
[...]2
[...]3


(footnote printed)

1,2,3Arnott (2005).

I don't care too much if this is good style.

My question is simply: Is that possible with jurabib or another package?



Thank you.
huckepick

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

Post Reply