BibTeX, biblatex and biber ⇒ Page numbers in footnotes, but not in bibliography
Page numbers in footnotes, but not in bibliography
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.
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
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Page numbers in footnotes, but not in bibliography
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}
\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.