我使用了以下代码:
\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}