我有两个数字,希望它们并排放置,但我有两个问题:
1) 如何使两个图形具有相同的大小?我知道两个图形的尺寸不一样,但是我怎样才能使它们相同?(两个图形均为 pdf 格式)
2) 我想为两个图形都添加一个标题..比如说,图 1,但在左侧的图形下面我想放 (a),在右侧的图形下面我想放 (b)..所以我们有图 1(a) 和图 1(b)。
这是我目前所拥有的:
\begin{figure}
\centering
\mbox{\subfigure{\includegraphics[scale=0.5]{Figure1_a.pdf}
\quad
\subfigure{\includegraphics[scale=0.5]{Figure1_b.pdf} }}}
\caption{caption for figure 1}
\label{fig12}
\end{figure}
答案1
您graphicx
可以设置width
图形的。
所以你应该做类似的事情
\documentclass{article}
\usepackage{graphicx}
\pagestyle{empty}
\begin{document}
Same width
\includegraphics[width=2cm]{example-image-16x10}
\includegraphics[width=2cm]{example-image-10x16}
\vspace{1cm}
Same height
\begin{minipage}[t]{2in}
\hspace*{\fill}\includegraphics[height=3cm]{example-image-16x10}\hspace*{\fill}\par
\hspace*{\fill}Caption for first\hspace*{\fill}
\end{minipage}
\begin{minipage}[t]{2in}
\hspace*{\fill}\includegraphics[height=3cm]{example-image-10x16}\hspace*{\fill}\par
\hspace*{\fill}Caption for second\hspace*{\fill}
\end{minipage}
\vspace{1cm}
Same height and width (ick!)
\includegraphics[height=3cm,width=2cm]{example-image-16x10}
\includegraphics[height=3cm,width=2cm]{example-image-10x16}
\end{document}