gpt4 book ai didi

matlab - "pdfLatex has stopped working"Matlab调用时提示

转载 作者:太空宇宙 更新时间:2023-11-03 20:34:49 26 4
gpt4 key购买 nike

我想在 matlab 中调用 pdflatex。代码如下

clc;
% analysis
i = 10;
n = 'Ashwani Roy';
x = 1:0.5:100;
y = sin(x.^2);
plot(x,y);
saveas(gcf, 'output', 'png')
%% write to tex
fid = fopen('Report.tex','w');
fprintf(fid,'%s\n','\documentclass{article}');
fprintf(fid,'%s\n','\usepackage{graphicx}');
fprintf(fid,'%s\n','\begin{document}');
fprintf(fid,'%s\n',strcat(num2str(i),':',n));
fprintf(fid,'%s\n','Some other text blah blah ');
fprintf(fid,'%s\n','\includegraphics{output.png}');
fprintf(fid,'%s\n','\end{document}');
fclose(fid);
%% DOS Invoke
[status,cmdout] =dos('"C:/Program Files (x86)/MiKTeX 2.9/...
miktex/bin/pdflatex.exe" -shell-escape ...
--src -interaction=nonstopmode Report.tex');

它的工作原理是创建一个 Report.pdf,其中包含我想要的数据,但它会抛出 Windows 错误提示,提示 psdlatex.exe 已停止工作。请关闭或调试程序。

我想知道如何抑制此提示或解决此问题的根本原因。

最佳答案

找到修复。我刚刚重新安装了整个 MikTex 2.9,它解决了这个问题。不确定是什么导致线程之前死亡,但可能是安装不完整。

关于matlab - "pdfLatex has stopped working"Matlab调用时提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25242149/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com