打印 APA 引用,无需引用

打印 APA 引用,无需引用

我正在尝试在文件中仅列出我的出版物。我可以使用包my_pub.bib来做到这一点吗?apacite

根据https://www.sharelatex.com/learn/Bibliography_management_with_biblatex biblatex可以使用类似

\printbibliography[type=article,title={Articles only}]

将其列到位。

这是我目前所拥有的

\documentclass[]{article}
\usepackage{apacite}

\begin{document}

\nocite{*}

\bibliographystyle{apacite}
\bibliography{other_pub, my_pub}

\end{document}

\nocite{*}列出两个 bib 文件中的所有未引用的论文。

我想列出my_pub.bib给定部分下的所有论文。我该怎么做?

相关内容