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?

More than 5 years have passed since last update.

LaTeXで作成した数式をEPSファイルに変換する方法

Last updated at Posted at 2019-01-15

より便利な方法

以下に記述してあるものより,より使いやすい方法を見つけました.こちらの投稿を参考にしてください.

要約

  • Tex2imgを使って,Texの数式をepsに変換する.

インストール

Tex2imgを参照のこと.

数式の作成

以下のテンプレートを適当な名前で保存して式を書き換える.

template.tex
\documentclass{article}
\pagestyle{empty}
\begin{document}
    \[
        \int_{0}^{\infty} \frac{\sin x}{\sqrt{x}} dx = \sqrt{\frac{\pi}{2}}
    \]
\end{document}

EPSファイルへの変換

作成したファイルに対して以下のコマンドを実行する.DOCUMENTの部分は適宜名前を変更すること.

windowsの場合:

> C:\PATH\TO\TeX2img\Tex2imgc.exe DOCUMENT.tex DOCUMENT.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?