3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Texで図を並べる際、図の位置を調整する方法(raisebox)

Last updated at Posted at 2019-05-10

TeX の minipage を使ったりして図を並べると、図のサイズが違う場合などに高さが揃わないことがあります。
そのような場合、図と図の間隔を調整したり(\hspace)、図のサイズを合わせたりすることで、位置のズレを修正することができますが、
論文を書いているときに、上の方法で修正できない事があったので、(\raisebox)を使った位置合わせの仕方を説明します。

#raiseboxによる位置合わせ
外枠が欲しい時は \fbox、要らない場合は \mbox として、{\includegraphics}の前に記述します。

\mbox{\raisebox{-30mm}{\includegraphics[width=35mm]{aaaa.jpg}}}

{-30mm}の値を変えることで、図の高さを調整できる。
*\fbox、\mbox は無くてもいいそうです。

具体的な使用例は以下のようになります。

\begin{figure}[htbp]
\begin{minipage}{0.45\hsize}
\begin{center}
\mbox{\raisebox{-30mm}{\includegraphics[width=35mm]{aaaa.eps}}}
\caption{aaaa}
\label{aaaa}
\end{center}
\end{minipage}

#おわりに
今回はTexで minipage を使用する際の位置ずれの対処方法について説明しました。
最後まで読んでいただきありがとうございました。

3
0
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?