12
11

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 5 years have passed since last update.

LaTeXで画像挿入で困ったのでメモ

Posted at

LaTeXってたまにしか使わないので、毎回操作忘れるのでメモ。

#LaTeXで画像挿入

##パッケージ指定
 graphicxパッケージを指定。graphic x であるのに。注意。

***.tex
\documentclass{jarticle}
\userpackage{graphicx}
\begin{document}
 文章
\end{document}

##画像はpdfに変換
 画像はpdfに変換するのが一番ベストぽい。convertコマンドを使う。

convert foo.jpg foo.pdf

僕の環境ではjpgからしかconvertできませんでした。
(アップデートやらなにやらで画像変換系統のライブラリがゴチャゴチャしてるのも、画像挿入で困った原因だったり。)

##挿入

***.tex
\documentclass{jarticle}
\userpackage{graphicx}
\begin{document}

\includegraphics[width=5cm, bb=0 0 300 400]{foo.pdf}

\end{document}

あとは、\includegraphicsで文章中に挿入。
bbは"Bounding Box"の略みたいです。画像サイズを指定してあげてください。
→参考:JPEG画像の挿入

12
11
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
12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?