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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- 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.