LaTeX小技巧——File ended while scanning use of @writefile错误的

早上在修改编译论文时发现了这个问题,仔细检查代码并没发现错误,一时也找不到具体的解决办法。我一直以为是因为runaway argument的错误提示,可实际上就是因为aux文件没有完整输入,导致上次编译结束后aux文件的部分内容缺失。处理方法嘛,很简单。
 
解决方法:删除编译文件夹内.aux扩展名结尾的文件,重新用Latex命令进行编译,自动生成正确的aux文件,完成错误的修复。
 
注:如果还不好使,就把除.tex以外的文件均删除掉,如:.bbl,.blg,.dvi,.log等
 
英文原文见这里:
 
Solution to: File ended while scanning use of @writefile 
 
Recently came across this error in latex. This shows up every 
time I try to compile the code after I first saw this error and 
restarting my system or the latex editor did not help- 
 
> Runaway argument? 
> ! File ended while scanning use of @writefile. 
> par 
> l.110 begin{document} 
 
 
This error is seen typically because of an incomplete 
entry in the aux file and can be removed by 
deleting the file with .aux extension in the latex source. 
To re-generate these aux files “latex” needs to be run. 
Note – you have to run latex and not texify or any 
other tool. 
 
Good luck.
 
 
原文地址:https://www.cnblogs.com/djiankuo/p/6141529.html