在 Latex 中将 3 个数字放在 2 列中

在 Latex 中将 3 个数字放在 2 列中

我想显示如图所示的 3 个数字:2 个在同一列,第三个在右列。我的文档不是分列的。

我尝试使用子图,但我只能将 2 个图形放在同一行在此处输入图片描述

答案1

试试这个代码:

\documentclass{book}

\usepackage{graphicx}

\usepackage{lipsum,mwe}
\begin{document}
    \lipsum[1]\\
        \begin{table}[h!]
        \caption{Table with 3 graphs}
        
        \begin{tabular}{l l}

            \parbox{2in}{\includegraphics[width=2in,height=1in]{image-a}\\ \includegraphics[width=2in,height=1in]{image-b}} &\parbox{2in}{\includegraphics[width=2in,height=2in]{image-c}}\\

        \end{tabular}
    \end{table}
    
\end{document}

输出:

在此处输入图片描述

编辑:

如果您希望每个子图下方都有标题,请考虑以下修改后的代码:

\documentclass{book}

\usepackage{graphicx}

\usepackage{lipsum,mwe}
\begin{document}
    \lipsum[1]\\
        \begin{table}[h!]
            \begin{center}
                \caption{Table with 3 graphs}
                \begin{tabular}{l l}
                    \parbox{2in}{\includegraphics[width=2in,height=1in]{image-a}\\ (a) sinus graph\\ \includegraphics[width=2in,height=1in]{image-b}\\(b)cosinus graph} &\parbox{2in}{\includegraphics[width=2in,height=2.2in]{image-c}\\ (c) tangent graph}\\
                \end{tabular}
            \end{center}
        \end{table}
\end{document}

和他的输出:

在此处输入图片描述

相关内容