「スタンドアロン」クラスで図がカットされないようにする

「スタンドアロン」クラスで図がカットされないようにする

LaTeX で生成された画像を抽出し、PDF ファイルとして保存するスクリプトを作成しています。画像が大きすぎるという問題があります。これが私の MWE です:

\documentclass[varwidth]{standalone}
\usepackage{amsmath}
\begin{document}
  \setlength{\unitlength}{1cm}
  \begin{picture}(17,5)(-1.5,0)
    \thicklines
    \put(1.2,3.5){$x_7$}
    \put(1.2,1){$x_7$}
    \put(2,3.5){\line(2,-1){1}}
    \put(2,1){\line(2,1){1}}
    \put(3,1.5){\line(0,1){1.5}}
    \put(3,1.5){\circle*{0.15}}
    \put(3,3){\circle*{0.15}}
    \put(3,3){\line(2,1){1}}
    \put(3,1.5){\line(2,-1){1}}
    \put(4.2,3.5){$\theta^i$}
    \put(4.2,1){$\theta^j$}
    \put(3.2,2.2){$\theta$}
    \put(6,2.2){\bf+}
    \put(8.2,3.5){$x_7$}
    \put(8.2,1){$x_7$}
    \put(9,3.5){\line(2,-1){1}}
    \put(9,1){\line(2,1){1}}
    \put(10,1.5){\line(0,1){1.5}}
    \put(10,1.5){\circle*{0.15}}
    \put(10,3){\circle*{0.15}}
    \put(10,3){\line(1,-2){1}}
    \put(10,1.5){\line(1,2){1}}
    \put(11.2,3.5){$\theta^i$}
    \put(11.2,1){$\theta^j$}
    \put(9.6,2.2){$\theta$}
  \end{picture}
\end{document}

pdflatex でコンパイルすると、切り取られた画像が得られます。

ここに画像の説明を入力してください

予防できますか?

答え1

varwidth必要のない は使用しないでください。\setlengthコマンドはプリアンブルに属します。

このコマンドは\bf25年間廃止されている

\documentclass{standalone}
\usepackage{amsmath}
\setlength{\unitlength}{1cm}
\begin{document}
\begin{picture}(17,5)(-1.5,0)
    \thicklines
    \put(1.2,3.5){$x_7$}
    \put(1.2,1){$x_7$}
    \put(2,3.5){\line(2,-1){1}}
    \put(2,1){\line(2,1){1}}
    \put(3,1.5){\line(0,1){1.5}}
    \put(3,1.5){\circle*{0.15}}
    \put(3,3){\circle*{0.15}}
    \put(3,3){\line(2,1){1}}
    \put(3,1.5){\line(2,-1){1}}
    \put(4.2,3.5){$\theta^i$}
    \put(4.2,1){$\theta^j$}
    \put(3.2,2.2){$\theta$}
    \put(6,2.2){\textbf{+}}
    \put(8.2,3.5){$x_7$}
    \put(8.2,1){$x_7$}
    \put(9,3.5){\line(2,-1){1}}
    \put(9,1){\line(2,1){1}}
    \put(10,1.5){\line(0,1){1.5}}
    \put(10,1.5){\circle*{0.15}}
    \put(10,3){\circle*{0.15}}
    \put(10,3){\line(1,-2){1}}
    \put(10,1.5){\line(1,2){1}}
    \put(11.2,3.5){$\theta^i$}
    \put(11.2,1){$\theta^j$}
    \put(9.6,2.2){$\theta$}
  \end{picture}
\end{document}

ここに画像の説明を入力してください

関連情報