【Latex】latexインポートsvgピクチャ

1137 ワード

1、inkscapeをダウンロードする:https://inkscape.org/release/all/windows/64-bit/exe/インストール中に環境変数の追加をチェックし、チェックしない場合は手動で追加します.コマンドを使用して、inkscape -Vが正常にインストールかどうかを確認します.2、inkscapeを利用してsvgをpdfとpdf_に変えるtexは、svgピクチャが存在するディレクトリの上にcmd(cmdを進んでからsvgピクチャが存在するディレクトリにcdすることもできます)に入り、以下のコマンドを実行します.それでsvgを例に挙げます.
## inkscape version   1.x
inkscape -D --export-type=pdf --export-latex demo.svg

実行が完了するとdemo.svgディレクトリの下でdemoを生成する.pdfとdemo.pdf_texの2つのファイル.3、Latexにマクロパッケージを挿入する
\usepackage{color}
\usepackage{transparent}
\usepackage{graphicx}
\usepackage{import}

画像を挿入
\begin{figure}
    \centering
    \def\svgwidth{\columnwidth}
    \input{demo.pdf_tex}
\end{figure}

参照リンク:1、http://ctan.imsc.res.in/info/svg-inkscape/InkscapePDFLaTeX.pdf2、Latex挿入svgピクチャ3、Latex追加svgピクチャ