具有不同线条颜色的封闭形状

具有不同线条颜色的封闭形状

以下代码定义了 MWE:

在此处输入图片描述

\documentclass[dvipsnames]{article}
\usepackage{tikz}
\begin{document}
    \begin{tikzpicture}
    \draw[dashed,Cerulean] (0,0)--(1,0)--(1,4);
    \draw[thick,OrangeRed] (0,0) -- (1,4);
    \draw[|-|] (1.3,4) -- (1.3,0) node[xshift=5ex,align=center,midway] {\scriptsize height (4)};
    \draw[|-|]  (0,-0.25) -- (1,-0.25) node[below,midway] {\scriptsize base (1)} ;
    \end{tikzpicture}
\end{document}

我遇到的问题是形状不是封闭的,斜边和另外两条边相交的角明显不美观。有没有办法像我的例子一样,用不同的装饰和颜色制作一条封闭的路径?当然,需要多加考虑顶点的平滑度。

答案1

这不是最漂亮的解决方案,但也许对你有用。我正在使用剪切路径。

\documentclass[dvipsnames]{article}
\usepackage{tikz}
\begin{document}
    \begin{tikzpicture}
        \draw[|-|] (1.3,4) -- (1.3,0) node[xshift=5ex,align=center,midway] {\scriptsize height (4)};
        \draw[|-|]  (0,-0.25) -- (1,-0.25) node[below,midway] {\scriptsize base (1)} ;
        \path[clip] (0,0) -| (1,4) -- cycle;
        \draw[very thick,dashed,Cerulean] (0,0) -- (1,0) (1,0) -- (1,4);%To see the vertice at (1,0)
        \draw[very thick,OrangeRed] (0,0) -- (1,4);
    \end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容