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.
BibTeX, biblatex and biber ⇒ Page numbers in footnotes, but not in bibliography
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Page numbers in footnotes, but not in bibliography
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:
The
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.