使用 tikzknots
包时,使用选项时consider self intersections
,重绘的交叉线部分不会保持样式:例如,粗线在交叉处附近重绘为细线,并且会失去任何颜色。这是一个错误吗?有简单的解决方法吗?
\documentclass[tikz]{standalone}
\usetikzlibrary{knots}
\begin{document}
\begin{tikzpicture}
\begin{knot}[consider self intersections]
\strand[thick,red] (-1,-1) to (1,1);
\strand[thick,blue] (1,-1) to (-1,1);
\end{knot}
\end{tikzpicture}
\end{document}
输出