auctex是否可能以与bib文件中的引用不同的方式显示丢失的引用?当前,所有引用看起来都是相同的,因此无法一目了然地辨别出在bib文件中定义了哪些引用关键字,而哪些不是。Texstudio很好地做到了这一点。
book.tex
:
\documentclass{book}
\usepackage[backend=biber]{biblatex}
\addbibresource{bib.bib}
\begin{document}
This reference exists \autocite{ref1}.
This reference does not \autocite{ref2}.
% A squiggle, red, anything different to show "ref2" differently to "ref1" would be lovely.
\end{document}
book.bib
:
@misc{ref1, ...}
2
如果您使用RefTeX,则永远不会输错引用!!!开个玩笑,尽管我不确定这样做是否容易,但我还是建议您向AUCTeX邮件列表提出此建议:auctex-devel@gnu.org
—
giordano 2015年