f=figure;
subplot(2,1,1);
plot(t,zeros(1,1001),'k:','LineWidth',1.2);%参考值用黑色点线
hold on
plot(t,xn,'--','LineWidth',1.2);%用虚线,线粗一点
hold on
plot(t,x,'LineWidth',1.4);%重要的数据用实线,线粗一点
legend('$x_{r}$','$x_n$','$x$','Interpreter','latex')%这样出来的字体是latex字体
axis([0 10 -0.1 0.3]);
xlabel('$Time(s)$','Interpreter','latex');ylabel('$x$','Interpreter','latex');
subplot(2,1,2);
plot(t,zeros(1,1001),'k:','LineWidth',1.2);
hold on
plot(t,[un un(1000)],'--','LineWidth',1.2);
hold on
plot(t,[u u(1000)],'LineWidth',1.4);
legend('$u_{r}$','$u_n$','$u$','Interpreter','latex');
axis([0 10 -0.5 0.5]);
xlabel('$Time(s)$','Interpreter','latex');ylabel('$u$','Interpreter','latex');
print(f,'Evolution','-depsc','-r600'); % 设置图片格式、分辨率
savefig(f,'Evolution.fig')
效果
也可以在图窗里打开属性编辑器进行修改,感觉改完效果好点
修改完选择另存为eps格式,在latex中使用代码添加图片
\begin{figure}
\centering
\includegraphics[width=0.5 \textwidth]{Evolution.eps}
\caption{Evolution}
\end{figure}
latex文档开头要添加包文章来源:https://www.toymoban.com/news/detail-562484.html
\usepackage{graphicx}
\usepackage{epstopdf}
文章来源地址https://www.toymoban.com/news/detail-562484.html
到了这里,关于Matlab画图导出Latex论文插图的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!