gpt4 book ai didi

latex - 如何在子图 latex 环境中的数字之间留出空间?

转载 作者:行者123 更新时间:2023-12-04 14:52:45 28 4
gpt4 key购买 nike

我正在使用命令\begin{subfigure}...\end{subfigure} 并排插入三张图片。但我想知道如何在两者之间留出空间,因为它们彼此太近了。

\begin{figure}
\begin{subfigure}
here's the first image
\end{subfigure}
\begin{subfigure}
here's the second image
\end{subfigure}
\begin{subfigure}
here's the third image
\end{subfigure}
\end{figure}

最佳答案

我建议使用 subcaption 并添加一些 \hspace图像之间:

enter image description here

\documentclass{article}

\usepackage{subcaption,graphicx}

\begin{document}

\begin{figure}
\centering
\begin{subfigure}{.3\linewidth}
\centering
\includegraphics[width = \linewidth]{example-image-a}
\caption{First image}
\end{subfigure}%
\hspace{1em}% Space between image A and B
\begin{subfigure}{.3\linewidth}
\centering
\includegraphics[width = \linewidth]{example-image-b}
\caption{Second image}
\end{subfigure}%
\hspace{2em}% Space between image B and C
\begin{subfigure}{.3\linewidth}
\centering
\includegraphics[width = \linewidth]{example-image-c}
\caption{Third image}
\end{subfigure}
\caption{A number of images}
\end{figure}

\end{document}

关于latex - 如何在子图 latex 环境中的数字之间留出空间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52501988/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com