目前我正在 Overleaf 上开发一个模板。我决定使用不同的引用样式,所以我将其改为:
\bibliography{report}
变成这样:
\bibliographystyle{ieeetr}
\bibliography{report}
这给出了以下警告:
./report.tex:
LaTeX Warning: Unused global option(s):
[largelogo].
(no line number):
This is BibTeX, Version 0.99d (TeX Live 2016/Debian)
Capacity: max_strings=100000, hash_size=100000, hash_prime=85009
The top-level auxiliary file: report.aux
The style file: my-report.bst
Illegal, another \bibstyle command---line 46 of file report.aux
: \bibstyle
: {ieeetr}
I'm skipping whatever remains of this command
Database file #1: report.bib
You've used 5 entries,
2773 wiz_defined-function locations,
635 strings with 6341 characters,
and the built_in function-call counts, 2901 in all, are:
= -- 265
> -- 195
< -- 2
+ -- 65
现在看来模板已经定义了引用样式。作为程序员,我现在想转到第 46 行report.aux
看看那里发生了什么。
但是我的整个项目中没有这样的文件。根据这Overleaf 上的常见问题解答,我需要下载项目的详细 zip 版本才能查看这些文件。但是当我这样做时,zip 文件仍然不包含 report.aux 文件。
所以我的问题是:这个文件是否存在(在任何时候)?如果是,我在哪里可以找到这个文件?如果不存在,警告指的是哪里?
注意:在这个问题中我并不直接关注原始问题,而是特别关注report.aux
警告中引用的文件。