双栏格式的图形大小不同但居中对齐

双栏格式的图形大小不同但居中对齐

在此处输入图片描述

我打算插入两个大小不同的图形,如图所示对齐,它们应该插入到figure*环境中。任何见解都将不胜感激,敬谢不敏

答案1

我建议您使用并行subfigure环境。

如果您不想要subfigures 而只​​是想要并排的“常规”图形,我建议您将{subfigure}下面显示的代码中的 四个实例更改为{minipage}并省略该\caption{Overall figure caption}指令。

在此处输入图片描述

\documentclass[twocolumn]{article} % choose a suitable document class
\usepackage[demo]{graphicx} % remove 'demo' option in real doc.
\usepackage{subcaption} % for 'subfigure' env.
\begin{document}

\begin{figure*}
\begin{subfigure}{0.5\textwidth}
\centering
\includegraphics[width=0.8\textwidth,height=0.8\textwidth]{figa}
\caption{Caption A}
\end{subfigure}%
\begin{subfigure}{0.5\textwidth}
\centering
\includegraphics[width=0.5\textwidth,height=0.5\textwidth]{figb}
\caption{Caption B}
\end{subfigure}
\caption{Overall figure caption} % optional
\end{figure*}
\end{document}

相关内容