BibTeX, biblatex and biberinline citation and no references at the end

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
christopheccc
Posts: 2
Joined: Thu May 20, 2010 10:06 pm

inline citation and no references at the end

Post by christopheccc »

hello,


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}
Which gives about this results for example:
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
My problems are:
- 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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

christopheccc
Posts: 2
Joined: Thu May 20, 2010 10:06 pm

inline citation and no references at the end

Post by christopheccc »

Hi,


so I have a solution and a new question.

I was using quickbuild (PdfLatex) with kile, which usually does automatically:
1) PdfLatex
2) BibTex
3) PdfLatex
4) PdfLatex

But, probably because of the \nobibliography{...}, it wasn't doing this. So I did steps 1 to 4 myself and (magic!) it worked.

Now my question is:
- how do I force quickbuild in kile to do 1 to 4 when \nobibliography{...} is used ?
or
- how do I force quickbuild in kile to always do 1 to 4 ?


Thank you
Christophe
Post Reply