如何添加文中未提及的参考文献?
通过以下设置,仅引用的来源\cite{stuff}
会打印在参考文献页中。
\nocite
并且\nocite{*}
不适用于 abntex2 类。
如果可能的话,我想要一个保留 abntex2cite 包设置的解决方案。
\documentclass[
12pt,
a4paper,
openright,
%twoside,
oneside,
dvipsnames,
chapter=TITLE,
section=TITLE,
english,
brazil]{abntex2}
\usepackage[
alf,
abnt-emphasize=bf,
bibjustif,
recuo=0cm,
abnt-etal-cite=4,
abnt-etal-text=it]{abntex2cite}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
[]的
尤利西斯。
答案1
\nocite
当我尝试它时它起作用了,\cite
最后的列表中有一个可见内容和两个引用。
(请始终提供完整的文件,而不仅仅是片段)
\documentclass[
12pt,
a4paper,
openright,
%twoside,
oneside,
dvipsnames,
chapter=TITLE,
section=TITLE,
english,
brazil]{abntex2}
\usepackage[
alf,
abnt-emphasize=bf,
bibjustif,
recuo=0cm,
abnt-etal-cite=4,
abnt-etal-text=it]{abntex2cite}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{textcomp}
\begin{document}
xxx\cite{inbook-full}
xxx\nocite{article-full}
\bibliographystyle{abntex2-num}
\bibliography{xampl}
\end{document}