I have looked a lot for my problem which is the contrary of what people usually want. I want to create a commented list of references. For this I use this code:
Code: Select all
\documentclass[12pt,a4paper]{article} % what class is the most suitable ?
\usepackage[latin1,utf8]{inputenc} % permet d'utiliser les caractères ISO 8859-1, ce qui signifie que vous pouvez taper directement les caractères accentues
\usepackage{enumerate} % can customize enumeration LOCALLY : \begin{enumerate}[1.] or \begin{enumerate}[a)] or ...
\usepackage{color} % use of the color features
\usepackage{url} % can enter URLs like this: \url{http://www.stack.nl/~jwk/latex/}
\usepackage[
pdftex,
colorlinks=true,
linkcolor=blue,
citecolor=blue,
filecolor=blue,
urlcolor=blue,
pdfstartview=FitB
]{hyperref}
\usepackage{natbib} % The best package for bibliographies according to http://www.rhizobia.co.nz/latex/thesis.html.
\bibliographystyle{abbrvnat} % or plainnat or plain or acm or apalike or ...
\bibpunct{(}{)}{;}{a}{}{,} % see http://merkel.zoneo.net/Latex/natbib.php
\usepackage{bibentry} % place bibliographic entries anywhere in the text
\begin{document}
\bibliography{my_ref_cumul_2010_05_19}
\nobibliography*
\begin{description}
%
\item[\cite{KEY1}] \hfill \\
\bibentry{KEY1} \\ \\
COMMENTS
%
\item[\cite{KEY1}] \hfill \\
\bibentry{KEY1} \\ \\
COMMENTS
%
\item[\cite{KEY1}] \hfill \\
\bibentry{KEY1} \\ \\
COMMENTS
%
\end{description}
\end{document}
My problems are:Alfieri et al. (2008)
L. Alfieri, P. Claps, P. D’Odorico, F. Laio, and T. M. Over. An analysis of the soil moisture feedback on convective and stratiform precipitation. Journal of Hydrometeorology
COMMENTS
Ambaum (2010)
M. H. P. Ambaum. Significance tests in climate science. ArXiv e-prints, pages 1–9, MARCH 2010
COMMENTS
Annan (2010)
J. D. Annan. Bayesian approaches to detection and attribution. RIGC/JAMSTEC, pages 1–9, FEBRUARY 2010
COMMENTS
- I have to use \bibliography{my_ref_cumul_2010_05_19}, because if not I don't generate the bbl file and if not I can't use \cite{...}
- despite the fact that I use \nobibliography*, I still get the warnings about duplicates...
- because I use \bibliography{my_ref_cumul_2010_05_19}, I have a page with the references used (so in addition to the one already commented in the text!).
What I'd like, is to have the result showed and also to be able to cite at the end, only the papers NOT cited in the text (or nothing at all).
I use:
a)
Kile
Version 2.0.85
Using KDE Development Platform 4.4.2 (KDE 4.4.2)
b)
Ubuntu 10.04 LTS - the Lucid Lynx - released in April 2010
Thank you
Christophe