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