最近在学matlab和latex,记录一下自己matlab2tikz入门的心得。
matlab2tikz('myfile.tex');
这样就在matlab当前文件夹下得到了名为myfile.tex的tex脚本。%% 以下是页首调包
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
%% the following commands are needed for some matlab2tikz features
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{grffile}
\begin{document}
%% 以下是引用的指令
\begin{figure}[h!]
\centering
\input{myfile.tex}
\caption{这是一张Matlab制作的TIKZ图}
\end{figure}
\end{document}
\begin{tikzpicture}
,将其修改为\begin{tikzpicture}[scale=0.9]
。scale=0.9就是缩放为原大小的90%。