包含多张图片的字母或图形未居中

包含多张图片的字母或图形未居中
\begin{figure}[H]
\centering
\begin{subfigure}[]
    \centering
    \includegraphics[width=7.5cm, height = 6 cm]{figures/insercaoPellets1.pdf}
\end{subfigure}%
\begin{subfigure}[]
    \centering
    \includegraphics[width=7.5cm, height = 6 cm]{figures/insercaoPellets2.pdf}
\end{subfigure}
\begin{subfigure}[]
    \centering
    \includegraphics[width=7.5cm, height = 6 cm]{figures/insercaoPellets3.pdf}
\end{subfigure}%
\begin{subfigure}[]
    \centering
    \includegraphics[width=7.5cm, height = 6 cm]{figures/insercaoPellets4.pdf}
\end{subfigure}
\caption{Possible process of formation of the plug: (a) Bentonite pellets are dropped down within the wellbore. (b) Due to the humidity present in the ambient, the pellets begin to swell during the fall. (c) When the pellets are already inside the bore's water, fragments of bentonite tend to attach to the pipe due do the adhesion force between the moist bentonite and the solid walls. (d) Presence of a seal made out of bentonite due to several particles bond to each other, forming a plug.}
\label{fig:formacaoPlug}

\结束{图}

大家好。

我正在处理一个文档,需要使用带有多个子图的图形。如您在此处所见,这些图形居中

在此处输入图片描述

但是,正如您所看到的,每个图对应的字母都没有居中。相反,它们是左对齐的。我确实发现了一些有关图宽度的问题。基本上,我的文档中的所有图都有相同的警告信息。具体到附图,警告错误是:

在此处输入图片描述

有谁知道如何解决这个问题?

谢谢你!

答案1

对于两个并排子图的情况,这应该会为您指明正确的方向。摆弄图形的绝对宽度(可能还有高度)是徒劳的。相反,请指定相对宽度,例如,占文本块整体宽度的百分比。

在此处输入图片描述

平均能量损失

\documentclass{article}
% In preamble:
\usepackage[demo]{graphicx} % remove 'demo' option in real document
\usepackage{caption}
\usepackage{subcaption}

\begin{document}
% In document:
\begin{figure}
    \begin{subfigure}{0.45\textwidth}
        \includegraphics[width=\textwidth]{img_a}
        \caption{img\_A}
        \label{fig:my-figureA}
    \end{subfigure}%
    \hfill %% maximize separation of the 'subfigure' environments
    \begin{subfigure}{0.45\textwidth}
        \includegraphics[width=\textwidth]{img_b}
        \caption{img\_B}
        \label{fig:my-figureB}
    \end{subfigure}

    \caption{A caption.}
    \label{fig:my-figure}
\end{figure}
\end{document}

答案2

首先谢谢你的回答!

我尝试使用您的代码,js bibra。然而,它没有获得该图的字母,而是有一个新名称(图 1.3),如下图所示在此处输入图片描述

此外,它比实际尺寸大得多,图像的左下角和右下角出现了 0.45 的值。这是我使用的代码:

\begin{figure}
\begin{subfigure}{0.45\textwidth}
    \includegraphics[width=\textwidth]{figures/insercaoPellets1.pdf}
    \caption{FIGURE A}
    \label{fig:my-figureA}
\end{subfigure}%
\hfill %% maximize separation of the 'subfigure' environments
\begin{subfigure}{0.45\textwidth}
    \includegraphics[width=\textwidth]{figures/insercaoPellets2.pdf}
    \caption{FIGURE B}
    \label{fig:my-figureB}
\end{subfigure}
\hfill %% maximize separation of the 'subfigure' environments
\begin{subfigure}{0.45\textwidth}
    \includegraphics[width=\textwidth]{figures/insercaoPellets3.pdf}
    \caption{FIGURE C}
    \label{fig:my-figureC}
\end{subfigure}\hfill %% maximize separation of the 'subfigure' environments
\begin{subfigure}{0.45\textwidth}
    \includegraphics[width=\textwidth]{figures/insercaoPellets4.pdf}
    \caption{FIGURE D}
    \label{fig:my-figureD}
\end{subfigure}

\caption{TEST}
\label{fig:my-figure}

\结束{图}

PS:Mico,我看不到你的答案

相关内容