一、报错如下:
Package pdftex.def Error: File `Fig1-eps-converted-to.pdf’ not found: using draft setting. \includegraphics{Fig1.eps}
实际上这是日志,左边消息栏里会有真正的错误原因:
!!! Error: Input filename ‘fig/Fig1.eps’ not allowed in restricted mode.
本人用的是texstudio,解决方法是在texstudio 选项-设置Texstudio-命令-PdfLatex这一行中%号前加上-shell-escape,完整的命令如下:
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape %.tex
来源:https://zhuanlan.zhihu.com/p/680774870
二、报错:tyle文件找不到所以跳过了
缺少哪个文件就去bst文件夹复制到根目录中
来源:https://blog.csdn.net/qq_39898066/article/details/122469834
三、多个子图不能用subfigure可以用minipage
转载:https://blog.csdn.net/qq_42679415/article/details/130894937
四、EPS编辑问题
只能用EPS格式的图片
https://cdkm.com/cn/png-to-eps
在线转换网站如上
五、texStudio编译EPS报错问题
在选项-设置-命令-PdfLatex一栏填入如下内容
pdflatex.exe -synctex=1 -interaction=nonstopmode -shell-escape %.tex
来源忘记哪位大佬的,我是百度到的,也是csdn的博主分享的。