并排发布数字

并排发布数字

我想要并排的两张照片。我想在 latex 中并排发布两个图形,但结果却一个接一个。我该如何解决这个问题?我使用的代码是:

    \begin{figure}[H]
    \includegraphics[scale=0.1]{img.jpg}
    \caption{Energy Vs Photon Count graph for day 44.6}

    \includegraphics[scale=0.45]{img2.jpg}
    \caption{Energy Vs Photon Count graph for day 45.9}
    \end{figure}
    \FloatBarrier

答案1

有很多可能性,看看两个并排的身影或者LaTeX 图表并排显示 [重复].例如floatrow(第 99 页) 包装:

    \documentclass{article}
    \usepackage{caption}
    \usepackage[style=plain]{floatrow}
    \usepackage{graphicx}
    \begin{document}
    \begin{figure}[H]
        \CommonHeightRow{%
            \begin{floatrow}[2]%
                \ffigbox[\FBwidth]
                {\includegraphics[height=\CommonHeight]{example-image-a}}
                {\caption{Energy Vs Photon Count graph for day 44.6}}
                \ffigbox[\FBwidth]
                {\includegraphics[height=\CommonHeight]{example-image-b}}
                {\caption{Energy Vs Photon Count graph for day 45.9}}
            \end{floatrow}}%
    \end{figure}
    \end{document}

输出:

在此处输入图片描述

如果要删除标题标签,可以使用命令\caption*{}\captionsetup{labelformat=empty}在序言中输入:

    \documentclass{article}
    \usepackage{caption}
    \usepackage[style=plain]{floatrow}
    \usepackage{graphicx}
    %\captionsetup{labelformat=empty} 
    \begin{document}
    \begin{figure}[H]
        \CommonHeightRow{%
            \begin{floatrow}[2]%
                \ffigbox[\FBwidth]
                {\includegraphics[height=\CommonHeight]{example-image-a}}
                {\caption*{Energy Vs Photon Count graph for day 44.6}}
                \ffigbox[\FBwidth]
                {\includegraphics[height=\CommonHeight]{example-image-b}}
                {\caption*{Energy Vs Photon Count graph for day 45.9}}
            \end{floatrow}}%
    \end{figure}
    \end{document}

输出: 在此处输入图片描述

相关内容