latex编译后不生成*.aux文件

参考:*.aux file not generated

问题:在使用新的latex模版引用其它bib格式的参考文献时,不出现*.aux文件,并提示如下错误:

I can't open file name *.aux

解决方法:
1. 首先在document的最后加入:

\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,refalias,reference}

同时在文中使用\cite{}应该一篇文献。

2.这时无法生成*.aux文件,那么只需要在文档的头部加入:

\let\nofiles\relax % 加入这一行即可,关键的一行
\documentclass[margin]{res}% Resume documentclass (http://ctan.org/pkg/res)
...

3.通过上面的步骤,再编译后,reference已经出来了,但是reference标题却是左对齐,其它section都是居中对齐的,故需要调整下,参考Format Bibliography Title,即加入下面的代码即可:

\renewcommand{\refname}{\centering References}

真是太神奇了,世界又美好了点!

你可能感兴趣的:(latex,aux)