[texhax] tufte-book style and biblatex

Herbert Voss Herbert.Voss at FU-Berlin.DE
Thu Jan 16 18:41:20 CET 2014


Am 16.01.2014 17:54, schrieb Clark, Adrian F:

> I'm experiencing some problems with the tufte-book style and biblatex, both as distributed on TeXlive 2013 (though I know the problem is somewhat older) and on TeXlive fully updated this morning.  Here's a minimal example:
>
> ------
> \documentclass{tufte-book}

tufte-book loads package natbib

> \usepackage{biblatex}

which biblatex dosn't like ...

You have to fool tufte-book that natbib is loaded and also
biblatex that natbib is _not_ loaded:


\makeatletter
   \@namedef{ver at natbib.sty}{9999/12/31}%  declare natbib as loaded
\makeatother
\documentclass{tufte-book}
\makeatletter
   \expandafter\let\csname ver at natbib.sty\endcsname\relax% reverse
\makeatother

\usepackage{biblatex}
> \addbibresource{refs.bib}
>
> \title{An Example Document}
> \author{Adrian F. Clark}
> \publisher{University of Essex, Colchester, CO4 3SQ, UK}
> \begin{document}
> \maketitle
>
> \chapter{Introduction}
> Here's a citation: \autocite{Raven:LBT}.
>
> \printbibliography
> \end{document}


Herbert



More information about the texhax mailing list