我试图在MATLAB R2023a中使用LaTeX公式时绘制MATLAB图,但我无法同时显示中文字符和LaTeX公式,我的代码如下所示:
clc; clear; close all;
s=5000000;
x=1:s; y=cos(x);
y=cumsum(y);
figure
plot(x,y,'.')
title('级数$f=\sum\limits_{k=1}^n cosk$','Interpreter','latex')
但我的图看起来是这样的:
我想同时展示给他们看。
我尝试修改mxdom2latex.xsl
:
<xsl:template match="mscript">
% This LaTeX was auto-generated from MATLAB code.
% To make changes, update the MATLAB code and republish this document.
\documentclass{article}
\usepackage{graphicx}
\usepackage{color}
\usepackage{ctex} % the only one statement that I added
\sloppy
\definecolor{lightgray}{gray}{0.5}
\setlength{\parindent}{0pt}
\begin{document}
但这说不通。
1条答案
按热度按时间sirbozc51#
MatlabLatex解释器不能处理CJK字符,句号。目前,你能做的最好的事情就是使用“tex”解释器来模仿这种效果,例如。
产生