0
1

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.

LaTeX for Mac 図の挿入

Last updated at Posted at 2021-07-20

図の挿入

%%%%%%%%%% 図:ラベル名 %%%%%%%%%%
\begin{figure}[H] %% 図の表示位置オプション
 \centering
 \includegraphics[keepaspectratio,scale=1.0)]{xxx.pdf}
 \caption{図の説明}
 \label{fig:ラベル名xxx}
\end{figure}
  • 図の表示位置オプション

    • h:here
    • t:top (ページ上部)
    • b:bottom (ページ下部)
    • t:top (ページ上部)
    • p:page
  • 図のオプショn

    • keepaspectratio  縦横の比を維持
    • scale        図のサイズの変更(scale=0.1)
    • width        横幅の指定(例:width=60mm)
    • height        高さの指定(例:height=3cm)
    • angle        回転角の指定(例:angle=90 -度-) *度
    • clip         BoundingBoxからはみ出た分を切り取る
0
1
0

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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?