Le mercredi 22/05/13 à 23h34,
David <
slac...@gmail.com> a écrit :
> Anyone have any ideas?
Probably because of 'key' field used by natbib to modify the sorting
order of the bibliography (same as 'sortkey' in biblatex).
Here is a MWE that gives the expected result (see how it has been
minimized and made self content thanks to filecontents and its
filecontents* environment):
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@INCOLLECTION{barber,
author = {Barber, F.},
title = {Surrealism 1924-1929},
booktitle = {Art of the Avant-Gardes},
publisher = {Yale University Press in association with the Open
University},
year = {2004},
address = {London},
editor = {Edwards, S. and Wood, P.},
owner = {david},
quality = {1},
timestamp = {2013.02.17}
}
@BOOK{areader,
title = {Art of the Twentieth Century, A Reader},
publisher = {Newhaven and London, Yale University Press in
association with The Open University},
year = {2003},
author = {Gaiger, J. and Wood, P.},
owner = {david},
quality = {1},
timestamp = {2013.02.20}
}
@BOOK{ait,
title = {Art in Theory 1900-2000: An Anthology of Changing Ideas},
publisher = {Malden, Oxford and Victoria, Blackwell Publishing},
year = {1986},
author = {Harrison, C. and Wood, P.},
owner = {david},
quality = {1},
timestamp = {2013.02.12}
}
\end{filecontents*}
\usepackage[
style=authoryear,
natbib=true,
backend=biber,
sorting=nyt
]{biblatex}
\bibliography{\jobname.bib}
\nocite{areader}
\nocite{ait}
\begin{document}
\autocite[443]{barber}
\printbibliography
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
Denis