儘管“inner sep”和“outer sep”設定為 0pt,但節點和從該節點開始的線之間仍出現間隙

儘管“inner sep”和“outer sep”設定為 0pt,但節點和從該節點開始的線之間仍出現間隙

我使用以下程式碼:

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{intersections}
\begin{document}
\begin{tikzpicture}
\draw[help lines] (0,0) grid (10,10);
\draw[very thick,rotate around={45:(2.3,5)}] (2.3,5) rectangle ++(4,0.3) ++(0,-0.15) node[inner sep=0pt,outer sep=0pt] (p2) {};
\draw[very thick,rotate around={-10:($(2.3,5)+(45:4)$)}] (2.3,5)++(45:4) rectangle ++(4,0.3)--++(0,0.2)--++(0.7,0)--++(0,-0.15)--++(-0.55,0)--++(0,-0.4)--++(0.55,0)--++(0,-0.15)--++(-0.7,0)--++(0,0.2)++(-4,0)++(0,0.15) coordinate (p3);
\draw[name path=2nd2] (p2)--+(45:2);
\draw[name path=3rd] (p3)--+(170:2);
\path[name intersections={of=2nd2 and 3rd,by=i23}];
\fill[red] (i23) circle (0.5pt);
\end{tikzpicture}
\end{document}

這是輸出:

當我放大時,我注意到,與 相比(p3),with和從 開始的線coordinate之間有一段距離。誰能解釋一下造成差距的原因是什麼?謝謝。(p2)node[inner sep=0pt,outer sep=0pt](p2)

答案1

inner sep即使和outer sep都設定為0pt有空格,您的空節點仍然不是完全空的。另一方面,座標只是座標系中的一個點。要獲得與節點相同的行為,您還需要設定minimum size=0pt。比較下例中的三個節點和座標。

\begin{tikzpicture}
  \draw[gray!40] (0,0) grid (4,3);
  \node[label=below:np] (np) at (1,2){};
  \node[label=below:np2,inner sep=0pt,outer sep=0pt] (np2) at (2,2){};
  \node[label=below:np3,inner sep=0pt,outer sep=0pt,minimum size=0pt] (np3) at (1,1){};
  \coordinate[label=below:cp] (cp) at (2,1);
  \foreach \angle in {0,45,...,315}{
    \draw[very thin,red] (np.\angle) circle (0.2pt);
    \draw[very thin,red] (np2.\angle) circle (0.2pt);
    \draw[very thin,red] (np3.\angle) circle (0.2pt);
    \draw[very thin,red] (cp.\angle) circle (0.2pt);
  }
\end{tikzpicture}

在此輸入影像描述

左上角有一個普通節點,右上角有一個內部和外部 sep 設定為零的節點,左下角有一個minimum size設定為零的空節點,右下角有一個座標,所有四個節點都有小圓圈所有方向(45度間隔)。

在您的範例中,這意味著當從節點(p2)向 45 度方向繪製時,它從 開始(p2.45),這會給您帶來小間隙。嘗試更改為

\draw[name path=2nd2] (p2.center)--+(45:2);

或更改(p2)為 acoordinate或 add minimum size=0pt

相關內容