如何创建阅读清单?

如何创建阅读清单?

我正在尝试设置阅读列表。为此,我希望有一个类似 的命令\showfull(myReference),它实际上会以某种方式显示包含作者、年份、标题、期刊的扩展参考资料,而不是将其称为(作者,年份)并将其放入参考书目中。

到目前为止,我正在使用 natbib,因此使用该(或至少不使用附加包)的解决方案是首选。

答案1

一个非常基本的宏的用途biblatex及其citetitle功能。

foobarExtendedCite

\documentclass{article}
\usepackage[style=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\newcommand{\extendedcite}[1]{\cite{#1}\space\citetitle{#1}}
\begin{document}
\extendedcite{aristotle:physics}

Some nice text
\extendedcite{aksin}
\printbibliography
\end{document}

答案2

\fullcite几乎让我达到了我想要的效果,但是在将 bib latex 加载为 时\usepackage[bibstyle=reading, doi=false,isbn=false,url=false]{biblatex},这也会影响 的输出fullcite,从而提供正确的引用而没有所有额外的内容。

相关内容