使用 subimport 将子图彼此相邻

使用 subimport 将子图彼此相邻

我想显示两个并排的子图(一个在左,一个在右)。我的问题是它们总是显示在彼此的上方。另外,我想使用 subimport 功能而不是 includefigure。不幸的是,我在网上找到的所有示例都只使用了 includefigure。

我也尝试了 scalebox,但没用:图仍然没有并排放置,而且它还会缩放我并不需要的轴标签。图像应该足够细才能并排放置。

我怎样才能使它与子导入一起工作?

我曾尝试以下代码:

\documentclass{article}

\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{import}
\usepackage{pgfplots}

\begin{document}

\begin{figure}[ht]
\centering
\begin{subfigure}[b]{0.5\textwidth}
\subimport*{plots/somePath/}{plot1.tex}
\caption{sub caption 1}
\end{subfigure}
\begin{subfigure}[b]{0.5\textwidth}
\subimport*{plots/somePath/}{plot2.tex}
\caption{sub caption 2}
\end{subfigure}
\caption{test.}
\end{figure}

\end{document}

这是该图的 tikz 代码,可以用于两个子图进行测试:

\begin{tikzpicture}
\begin{axis}[%
width=1.5in,
height=1in,
at={(0in,0in)},
scale only axis,
xmin=0,
xmax=5,
ymin=0,
ymax=10,
axis background/.style={fill=white}
]
\addplot [color=blue,solid,forget plot]
  table[row sep=crcr]{%
0   0\\
0.555555555555556   1.11111111111111\\
1.11111111111111    2.22222222222222\\
1.66666666666667    3.33333333333333\\
2.22222222222222    4.44444444444444\\
2.77777777777778    5.55555555555556\\
3.33333333333333    6.66666666666667\\
3.88888888888889    7.77777777777778\\
4.44444444444444    8.88888888888889\\
5   10\\
};
\end{axis}
\end{tikzpicture}

相关内容