BibTeX, biblatex and biberPage numbers in footnotes, but not in bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
lucasw89
Posts: 1
Joined: Sun May 27, 2018 11:37 pm

Page numbers in footnotes, but not in bibliography

Post by lucasw89 »

Hello Everyone.

I would like to create a document, where when i do \autocite{}, I will get a footnote citing the author, title, year and page numbers, and then in the bibliography, it will have the same, but page number is replaced by publisher. Is there any way to do this?

Right now i am using BibLaTeX-chicago with biber backend.

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Page numbers in footnotes, but not in bibliography

Post by kaiserkarl13 »

The footbib package should be able to handle this; use a different bibliography style in the bibliography than you do in the footnotes.

If you want your command to work as I think you intend it, try this:

Code: Select all

\documentclass{article}
\usepackage{footbib}
\newcommand*{\autocite}[1]{\nocite{#1}\footcite{#1}}
\footbibliographystyle{unsrt}
\footbibliography{my_database}
\begin{document}
This is my work\autocite{a_paper,b_paper}
\bibliographystyle{plain}
\bibliography{my_database}
\end{document}
The \autocite command I wrote here is not as robust as the originals; in particular, it won't handle an optional argument the way the original commands do.
Post Reply