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

texのために画像をepsに変換する際のあれこれ

Posted at

texでレポートなどを書いているとき、pngファイルなどの画像を貼り付けようとするとLaTeX Error: Cannot determine size of graphic in image.png (no BoundingBox).のようなエラーが出て画像が貼れない場合があります。
そうした場合は画像をepsファイルに変換してtexに貼るといい感じになりますが、オンラインツールなどでpngファイルをepsファイルに変換するとかなり手間がかかります。
そこで使うといいのがconvertコマンドです。
Macでconvertコマンドを使用する場合は

brew install imagemagick

でimagemagickをインストールし、

convert image.png image.eps

と実行することでimage.pngファイルをepsファイルに変換できます。

また、フォルダに入った複数のファイルをconvertしたい場合、

convert '*.png' -set filename:fn '%[basename]' '%[filename:fn].eps'

を実行するとフォルダ内の全てのpngファイルをepsにできます。

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