Kreuzungen mit benutzerdefinierter Form markieren (TikZ)

Kreuzungen mit benutzerdefinierter Form markieren (TikZ)

\pathIch möchte die Schnittpunkte zwischen und mit Kreisen und Dreiecken markieren curve. Meine Kreise sind in Ordnung. Aber ich habe ein Problem mit meinem Dreieck. Das Dreieck zeigt die Richtung der Kurve an, es ist eine Art Pfeil. VielleichtDashilft Ihnen zu verstehen, wovon ich spreche.

Hier ist mein MWE. Der Einfachheit halber kommentiere ich den Fehlerteil.

\documentclass[tikz, border=1mm]{standalone}
\usetikzlibrary{shapes, arrows.meta, intersections}
\def\trigl{iscoceles triangle[width=1.4mm, rotate=-3]}
\begin{document}
    \begin{tikzpicture}
        \draw[-stealth] (0,0) -- (6.7,0) 
            node[right]{$x$}; %x-axis
        \draw[-stealth] (0,0) -- (0,3) 
            node[above]{$y$}; %y-axis
        \draw [thick, name path=curve1,{Circle[length=1.4mm]}-{Circle[length=1.4mm]}]
            (0.2,1) .. controls (2,.6) and (2.7,.6) .. (2.9,1.5) 
                    .. controls (3.1,2.7) and (4,3) .. (6.5,1.8);
        \path [name path = line1] (1,0)--(1,3.5) (1.4,0)--(1.4,3.5) (2.3,0)--(2.3,3.5) (2.7,0)--(2.7,3.5) (2.93,0)--(2.93,3.5) (3.25,0)--(3.25,3.5) (3.6,0)--(3.6,3.5) (4.4,0)--(4.4,3.5) (5.3,0)--(5.3,3.5) (5.7,0)--(5.7,3.5);
        \fill [name intersections={of=curve1 and line1, name=i}]
        \foreach \s in {1,2,3,4,6,7,8,9,10}{(i-\s) circle (2pt)};
%       \fill [name intersections={of=curve1 and line1, name=i}] {(i-5) \trigl (2pt)};
    \end{tikzpicture}
\end{document}

Antwort1

Ändern Sie einfach die Form nodeum regular polygon sides=3(wenn es ein Polygon ist) oder circleoder squareusw., anstatt eine neue Form zu definieren. Sie können es auch um rotate=30einen beliebigen Betrag drehen, wenn die Richtung nicht gewünscht ist.

\documentclass[tikz, border=1mm]{standalone}
\usepackage{amsmath}
\usepackage{bm}
\usetikzlibrary{shapes, arrows.meta, intersections}
\begin{document}
    \begin{tikzpicture}
        \draw[-stealth] (0,0) -- (6.7,0) 
            node[right]{$x$}; %x-axis
        \draw[-stealth] (0,0) -- (0,3) 
            node[above]{$y$}; %y-axis
        \draw [thick, name path=curve1,{Circle[length=1.4mm]}-{Circle[length=1.4mm]}]
            (0.2,1) .. controls (2,.6) and (2.7,.6) .. (2.9,1.5) 
                    .. controls (3.1,2.7) and (4,3) .. (6.5,1.8);
        \path [name path = line1] (1,0)--(1,3.5) (1.4,0)--(1.4,3.5) (2.3,0)--(2.3,3.5) 
       (2.7,0)--(2.7,3.5) (2.93,0)--(2.93,3.5) (3.25,0)--(3.25,3.5) (3.6,0)--(3.6,3.5) 
       (4.4,0)--(4.4,3.5) (5.3,0)--(5.3,3.5) (5.7,0)--(5.7,3.5);
        \fill [name intersections={of=curve1 and line1, name=i}]
        \foreach \s in {1,2,3,4,6,7,8,9,10}{(i-\s) circle (2pt)};
       \path [name intersections={of=curve1 and line1, name=i}] (i-5) node[regular 
      polygon,regular polygon sides=3, fill,inner sep=1pt] {};
    \end{tikzpicture}
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen