"그림" 환경에서 생성된 자르기 그림

"그림" 환경에서 생성된 자르기 그림

나는 이 MWE에서 이 작품을 얻었습니다:

\documentclass[11pt]{article}
\usepackage{amsmath}

\begin{document}
My equation
\begin{equation*}
  \setlength{\unitlength}{1cm}
  \fbox{\begin{picture}(17,5)(-1.5,0)
      \thicklines
      \put(3.2,3){$x_5$}
      \put(3.2,1){$x_6$}
      \put(4,3){\line(1,-1){1}}
      \put(4,1){\line(1,1){1}}
      \put(5,2){\circle*{0.15}}
      \put(5,2){\line(1,0){2}}
      \put(5.9,1.5){$x_9$}
      \put(7,2){\circle*{0.15}}
      \put(7,2){\line(1,1){1}}
      \put(7.6,2.2){$x_8$}
      \put(8,3){\line(2,1){1}}
      \put(8,3){\line(2,-1){1}}
      \put(8,3){\circle*{0.15}}
      \put(9.3,3.5){$x_9$}
      \put(9.3,2.3){$x_7$}
      \put(7,2){\line(2,-1){2}}
      \put(9.3,0.9){$x_7$}
  \end{picture}}
\end{equation*}

\end{document}

그러면 다음 레이아웃이 생성됩니다(빨간색 수직선은 xdvi 뷰어에서 나타납니다). 여기에 이미지 설명을 입력하세요

내 질문은: 그림을 어떻게 자를 수 있습니까(주변의 추가 공간 제거)?

답변1

여기에 이미지 설명을 입력하세요

사진의 크기는 환경 옵션에 지정되어 있는데, 귀하의 17에서는 크기가 너무 커졌습니다.

\documentclass[11pt]{article}
\usepackage{amsmath}

\begin{document}
My equation
\begin{equation*}
  \setlength{\unitlength}{1cm}
  \fbox{\begin{picture}(7,3.5)(3,0.5)
      \thicklines
      \put(3.2,3){$x_5$}
      \put(3.2,1){$x_6$}
      \put(4,3){\line(1,-1){1}}
      \put(4,1){\line(1,1){1}}
      \put(5,2){\circle*{0.15}}
      \put(5,2){\line(1,0){2}}
      \put(5.9,1.5){$x_9$}
      \put(7,2){\circle*{0.15}}
      \put(7,2){\line(1,1){1}}
      \put(7.6,2.2){$x_8$}
      \put(8,3){\line(2,1){1}}
      \put(8,3){\line(2,-1){1}}
      \put(8,3){\circle*{0.15}}
      \put(9.3,3.5){$x_9$}
      \put(9.3,2.3){$x_7$}
      \put(7,2){\line(2,-1){2}}
      \put(9.3,0.9){$x_7$}
  \end{picture}}
\end{equation*}

\end{document} 

관련 정보