General ⇒ Document including annotated bibliography and references
Document including annotated bibliography and references
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: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Document including annotated bibliography and references
In case I got you wrong: Could you please post a minimal example of what's already working?
Re: Document including annotated bibliography and references
-
- Posts: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Document including annotated bibliography and references
Put the literature that should be annotated into one file, say special_literature.bib like this
Code: Select all
@book{knuth1986,
title = {The \TeX book},
author = {Knuth, Donald Ervin},
address = {Reading, Mass.},
publisher = {Addison-Wesley},
year = {1986},
annote = {This is an annotation\dots}
}
Code: Select all
@book{lamport1986,
title = {\LaTeX: a document preparation system},
author = {Lamport, Leslie},
address = {Reading, Mass.},
publisher = {Addison-Wesley},
year = {1986}
}
Code: Select all
\documentclass{article}
\usepackage{bibtopic}
\begin{document}
There are many books about \TeX{} \cite{knuth1986} and \LaTeX{}
\cite{lamport1986}.
% annotated bibliography
\begin{btSect}[alpha]{special_literature}
\section*{Annotated Bibliography}
\btPrintCited
\end{btSect}
% full bibliography
\begin{btSect}[alpha]{literature,special_literature}
\section*{Bibliography}
\btPrintCited
\end{btSect}
\end{document}
Code: Select all
pdflatex document.tex
bibtex document1.aux
bibtex document2.aux
pdflatex document.tex
pdflatex document.tex
The "only" thing left to do is to find a BibTeX style that supports annotations and use it for the annotated bibliography. Of course it must give the same names to the references. Therefore, plain and plain-annote unfortunately won't do the trick since they'll produce different numbers for identical references. If you can't find an appropriate style and don't want to write your own, you could try a dirty hack via defining a boolean switch and abuse the note field in the bibfile to include your annotations. But this shouldn't be your first idea.
Kind regards
- Attachments
-
- document.pdf
- PDF output of the example document.
- (56.89 KiB) Downloaded 462 times
Re: Document including annotated bibliography and references
