BibTeX, biblatex and biberCan't have CrossRef working in BibLaTeX

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
monamipierrot
Posts: 31
Joined: Sun Aug 10, 2008 12:01 pm

Can't have CrossRef working in BibLaTeX

Post by monamipierrot »

Solved: Just had to put collection after incollection in bib file

Hello,
I can't understand why I can't have my CrossRefs properly work: BibLaTeX will always print only the fields of the incollections which are properly filled up.
I use LyX, so I would submit just a minimal example exported in a tex file along with the bib file. In the incollection there's only the year, and this is the only field printed in output: none of the collection are printed.

TEX file:

Code: Select all

%% LyX 1.6.4 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[twoside,italian]{scrreprt}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\pagestyle{headings}
\setcounter{secnumdepth}{1}
\setcounter{tocdepth}{3}

\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.

\usepackage[babel]{csquotes} 
\usepackage[natbib=true, mincrossrefs=0]{biblatex}
\bibliography{F:/DiLavoro/Tesi/TesiUTFprova}
\makeatother
\usepackage{babel}
\begin{document}
sgd%
\footnote{xds-zxx\citet{RubboliBottesiniSenzaConfini}, \citet{RubboliEroLeandroSognano}%
}
\addcontentsline{toc}{part}{\bibname}\printbibliography
\end{document}
.bib file:

Code: Select all

@collection{
ProgrEroLeandroCrema,
   Title = {Teatro San Domenico di Giovanni Bottesini},  
   Publisher = {publisher},
   Address = {here},
      Year = {2009} }


@incollection{
RubboliEroLeandroSognano,
   Author = {xxx, xxx},
   Title = {yyy},  
   Pages = {88-93},
      CrossRef = {ProgrEroLeandroCrema},
   Year = {2009} }


@incollection{
RubboliBottesiniSenzaConfini,
   Author = {xxx, xxx},
   Title = {zzz},  
   Pages = {94-98},
      CrossRef = {ProgrEroLeandroCrema},
   Year = {2009} }
What did I do wrong?

Thanks
Piero
H.
  • Windows XP professional sp3
    LyX 1.6.1
My current docs defaults:
Koma-script Book with package biblatex; LilyPond for music examples

Recommended reading 2024:

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

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

Post Reply