迷你页面调整

迷你页面调整

我尝试将两张不同大小的图像并排放置,并将标题放在第一张图像下方以填充空白处。

每个 minipage 选项的组合tb都没有产生所需的输出。

要求如下:

  • 两幅图像在顶部对齐。
  • 两张图片的标题都是独一无二的,并且写在第一张图片的正下方。

在以下输出中,图像未在顶部对齐。 有没有什么方法可以正确调整小页面?

以下是 MWE:

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[top=2.5cm,bottom=2cm,left=2.6cm,right=2.6cm]{geometry}

\begin{document}
    \begin{figure}
        \centering
        \begin{minipage}[t]{0.5\linewidth}
            \centering
            \includegraphics[width=238px, height=274px]{example-image-a}
            \caption{Schémas dex expériences des aimants $A$ et $B$}
        \end{minipage}\qquad
        \begin{minipage}{0.4\linewidth}
            \centering
            \includegraphics[width=117px, height=383px]{example-image-b}
        \end{minipage}
    \end{figure}

\newpage

    \begin{figure}
        \centering
        \begin{minipage}[t]{0.5\linewidth}
            \centering
            \includegraphics[width=0.9\linewidth]{AimantAB1.png}
            \caption{Schémas dex expériences des aimants $A$ et $B$}
        \end{minipage}\qquad
        \begin{minipage}{0.4\linewidth}
            \centering
            \includegraphics[width=0.6\linewidth]{AimantAB2.png}
        \end{minipage}
    \end{figure}

\end{document}

并有相应的输出:

示例图像输出 真实图像输出

答案1

我不确定,我是否正确理解了你的问题......像这样?

在此处输入图片描述

\documentclass[11pt,a4paper]{report}
\usepackage[export]{adjustbox} % it load graphicx too
                               % used to move images' baselines at their top
\usepackage[vmargin=2.5cm, hmargin=2.6cm]{geometry}

\begin{document}
    \begin{figure}
        \centering
        \begin{minipage}[t]{0.5\linewidth}
            \centering
            \includegraphics[width=238px, height=274px,valign=t]{example-image-a}
            \caption{Schémas dex expériences des aimants $A$ et $B$}
        \end{minipage}\hfil
        \begin{minipage}[t]{0.4\linewidth}
            \centering
            \includegraphics[width=117px, height=383px,valign=t]{example-image-b}
        \end{minipage}
    \end{figure}
\end{document}

答案2

请尝试:

\documentclass[11pt,a4paper]{report}
\usepackage{graphicx}
\usepackage[top=2.5cm,bottom=2cm,left=2.6cm,right=2.6cm]{geometry}
\usepackage{adjustbox}

\begin{document}
    \begin{figure}
        \centering
\adjustbox{valign=t}{
        \begin{minipage}[t]{0.5\linewidth}
            \centering
            \includegraphics[width=238px, height=274px]{example-image-a}
            \caption{Schémas dex expériences des aimants $A$ et $B$}
        \end{minipage}}\qquad
\adjustbox{valign=t}{
        \begin{minipage}{0.4\linewidth}
            \centering
            \includegraphics[width=117px, height=383px]{example-image-b}
        \end{minipage}}
    \end{figure}

\end{document}

输出:

在此处输入图片描述

相关内容