Tikz 结包:考虑自相交的线条样式

Tikz 结包:考虑自相交的线条样式

使用 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}

输出

在此处输入图片描述

相关内容