期刊论文中图表的排列方法如下

期刊论文中图表的排列方法如下

我想在期刊论文中添加 3 张图片,如下图所示。 在此处输入图片描述

我使用了以下代码:

\begin{figure*}[!h]
\begin{tabular}{cc}
    \multirow{3}{*}{}
    &   \includegraphics[height=0.7in]{image b} \\
    & (b) \\
    \includegraphics[width=5in]{image a} &   \includegraphics[height=0.85in]{image c} \\
    (a)                                             & (c)
\end{tabular}
\caption{Detailed Schematic of Proposed D-LCM is shown in (a), Characteristics of signal, $V_{S}$ and $V_{A}$ for a dual-regime D-LCM is shown in (b) and (c) respectively.}
\end{figure*}

执行后我得到了这个: 在此处输入图片描述

请帮助我,提前谢谢。

答案1

我认为它一定适合您(它是您所需要的吗?):

\documentclass{article}
\usepackage{graphicx}
\usepackage{subfig}


\begin{document}
\begin{figure}[htp]
\centering
\begin{tabular}{@{}c@{}}
\subfloat{\includegraphics[width=0.5\linewidth]{example-image-a.png}}\\ (a)
\end{tabular}\qquad % some space
\begin{tabular}{@{}c@{}}
\subfloat{\includegraphics[width=0.3\linewidth]{example-image-b.png}}\\ (b)
\\[0.1cm]
\subfloat{\includegraphics[width=0.3\linewidth]{example-image-c.png}}\\ (c)
\end{tabular}
\caption{Detailed Schematic of Proposed D-LCM is shown in (a), Characteristics of signal, $V_{S}$ and $V_{A}$ for a dual-regime D-LCM is shown in (b) and (c) respectively.}
\end{figure}
\end{document}

在此处输入图片描述

相关内容