tikz: スパイの上に描画する

tikz: スパイの上に描画する

tikz-spyに描画したいのですが、新しい行は次のようになりますカバーするスパイによってコピーされたもの。例:

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{spy,shapes}

\pgfdeclarelayer{bg}    % declare background layer
\pgfsetlayers{bg,main}  % set the order of the layers (main is the standard layer)


\begin{document}
\begin{tikzpicture}[spy using outlines={rectangle, width=4.5cm, height=3cm, magnification=4, connect spies,every spy on node/.append style={thin}},hide/.style={opacity=1}]

\begin{scope}
    \draw  circle (8) node[yshift=8.8cm,align=center] {};
    \draw  circle (8.2) node {};
    \draw (-5,7.4) -- (5,7.4);
\end{scope}

%\begin{pgfonlayer}{bg}    % select the background layer
\spy [black] on (-3.4,7.4) in node (spyleft) [left] at (-0.5,4.5);
%\end{pgfonlayer}

%\begin{pgfonlayer}{main}    % select the main layer
\draw[line width=2pt,color=blue] (-3.3,4.5) -- (-1.35,4.5) -- (-1.35,5.35) -- cycle;
%\end{pgfonlayer}

\end{tikzpicture}

\end{document}

黒い線の上に青い三角形があるはずです。図面の一部をレイヤーに明示的に配置しても、役に立たないようです。対処できる特定のスパイレイヤーはありますか?

(理想的には、三角形の角も円と線の交点によって定義されるようにしたいのですが、今のところは、レイヤーを正しく設定できれば手動で配置しても問題ありません...)

答え1

前景レイヤーを宣言し、そのレイヤーに青い三角形を配置します。

\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{spy,shapes}

\pgfdeclarelayer{fg}    % declare foreground layer
\pgfsetlayers{main,fg}  % set the order of the layers (main is the standard layer)


\begin{document}
\begin{tikzpicture}[spy using outlines={rectangle, width=4.5cm, height=3cm, magnification=4, connect spies,every spy on node/.append style={thin}},hide/.style={opacity=1}]

  \begin{scope}
      \draw  circle (8) node[yshift=8.8cm,align=center] {};
      \draw  circle (8.2) node {};
      \draw (-5,7.4) -- (5,7.4);
  \end{scope}
  
  \spy [black] on (-3.4,7.4) in node (spyleft) [left] at (-0.5,4.5);
  
  \begin{pgfonlayer}{fg}    % select the main layer
    \draw[line width=2pt,blue] (-3.3,4.5) -- (-1.35,4.5) -- (-1.35,5.35) -- cycle;
  \end{pgfonlayer}
\end{tikzpicture}

\end{document}

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

関連情報