如何在 Tufte-Book 文档类的引用中包含页码?

如何在 Tufte-Book 文档类的引用中包含页码?

我遇到了与此问题中提出的相同的问题: 如何在 tufte-book 引用中包含页码?

不幸的是,提问者找到了解决方案但没有发布答案。谁可以指定要添加的元素MWE

tufte-mwe.tex:

\documentclass{tufte-book} 
\usepackage{babelbib}
\begin{document} 
A citation\cite[p.50]{Tufte2001}. 
\bibliography{tufte-mwe} 
\bibliographystyle{plain-fr} 
\end{document} 

tufte-mwe.bib:

@BOOK{Tufte2001,
author = {Edward R. Tufte},
title = {The Visual Display of Quantitative Information},
publisher = {Graphics Press},
year = {2001},
address = {Cheshire, Connecticut},
isbn = {0-9613921-4-2}
}

因为此代码会产生如下错误结果,而不是在侧注中指定参考页面:

在此处输入图片描述

答案1

我找到了一个解决方案:

\documentclass[nobib]{tufte-book}
\usepackage[french]{babel}%.................. Language setup
\usepackage[htt]{hyphenat}
\usepackage{csquotes}
\usepackage[style=authortitle-icomp]{biblatex}% It is possible to change the style, see http://ctan.tetaneutral.net/macros/latex/contrib/biblatex/doc/biblatex.pdf
\addbibresource{tufte-mwe.bib}
\begin{document}
A citation\footcite[50]{Tufte2001}.
\printbibliography
\end{document}

相关内容