BibTeX:我无法打开辅助

BibTeX:我无法打开辅助

所以我遇到了这个错误

BibTeX: I couldn't open auxiliary file part1/part1.aux : \@input{part1/part1.aux : }

以及该项目中的许多其他类似项目。BibTeX 我无法打开辅助文件

答案1

所以我写了很多行

\includeonly{%
  chapter1/chapter1,
  chapter2/chapter2,
  chapter3/chapter3,
  conclusion/conclusion,
  dec,abs,ack
}

mainrep.tex 第 14 行附近以及第 182 行附近的这些行

\include{part1/part1}
\include{chapter1/chapter1}
\include{chapter2/chapter2}
\include{chapter3/chapter3}
\include{chapter4/chapter4}
\include{part2/part2}
\include{chapter5/chapter5}
\include{chapter6/chapter6}
\include{chapter7/chapter7}
\include{chapter8/chapter8}
\include{chapter9/chapter9}
\include{chapter10/chapter10}
\include{chapter11/chapter11}
\include{chapter12/chapter12}
\include{chapter13/chapter13}
\include{conclusion/conclusion}

现在我想你可以看到解决方案了。无论如何,错误

BibTeX: I couldn't open auxiliary file part1/part1.aux : \@input{part1/part1.aux : }

一般是因为BibTeX找不到你的*.aux文件。另一个例子是无法打开辅助文件[关闭]。那里也 BibTeX找不到*.aux文件。这里的解决方案是将第 14 行附近的代码更改为

\includeonly{%
  chapter1/chapter1,
  chapter2/chapter2,
  chapter3/chapter3,
  chapter4/chapter4,
  chapter5/chapter5,
  chapter6/chapter6,
  chapter7/chapter7,
  chapter8/chapter8,
  chapter9/chapter9,
  chapter10/chapter10,
  chapter11/chapter11,
  chapter12/chapter12,
  chapter13/chapter13,
  conclusion/conclusion,
  dec,abs,ack
}

以便穷人BibTeX 最终能够找到它们。

执行此操作时,请不要忘记任何地方的“,” (逗号),并像这样书写

\includeonly{%
  chapter1/chapter1,
  chapter2/chapter2,
  chapter3/chapter3,
  chapter4/chapter4,
  chapter5/chapter5,
  chapter6/chapter6,
  chapter7/chapter7,
  chapter8/chapter8,
  chapter9/chapter9,
  chapter10/chapter10,
  chapter11/chapter11
  chapter12/chapter12,
  chapter13/chapter13,
  conclusion/conclusion,
  dec,abs,ack
}

找出缺失的“,” 。 知道了,现在就修复它,不要BibTeX 像我一样因你的无能而恼火。

她就是不能容忍傻瓜。

相关内容