在 latex 中将 matlab2tikz tex 文件居中

在 latex 中将 matlab2tikz tex 文件居中

我使用 matlab2tikz 将我的图转换为 tex 文件并将其添加到 latex 中,但遇到了一些问题。首先,我的图不在页面的中心。我该如何解决这个问题?其次,我该如何更改图的大小?有什么方法可以做到这一点吗?

在此处输入图片描述

这是我的代码:

\documentclass{article}

  \usepackage{pgfplots}
  \pgfplotsset{compat=newest}
  \usetikzlibrary{plotmarks}
  \usetikzlibrary{arrows.meta}
  \usepgfplotslibrary{patchplots}
  \usepackage{amsmath}

\begin{document}
  \begin{center}
  \begin{figure}
  \input{without drug.tex}
  \caption{Performance of cells without drug.}
  \label{fig1}
  \end{figure}
  \end{center}
\end{document}

相关内容