我在 Overleaf 中哪里可以找到辅助文件?

我在 Overleaf 中哪里可以找到辅助文件?

目前我正在 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警告中引用的文件。

答案1

Overleaf 版本 2 更新:菜单已更改。

如果您需要任何其他文件,您可以在编译器面板的“日志和输出文件”和“其他日志和文件”下找到它们。

在此处输入图片描述

答案2

此帖子仅适用于 Overleaf 版本 1(我不知道它是否仍在使用)。对于 Overleaf v2,请参阅其他答案。

据我所知,获取所有辅助文件的唯一方法是选择 Project(如果尚未显示)然后DOWNLOAD AS ZIP --> Input and Output Files

通过这种方式,您可以下载.zip所有辅助文件。

请注意,您必须使用Input and Output Files,而不是Input Files Only,如果您仅单击,则这是默认设置DOWNLOAD AS ZIP

在此处输入图片描述

相关内容