Форма с именем X не известна - PullRequest
1 голос
/ 15 июня 2019

Я пытаюсь создать картинку tikz с pgfplots, показывающими угол с пакетом tkz-euclide.Однако после большого затруднения я не могу скомпилировать латексный документ.

Я попытался изменить параметры в пути.Кажется, ничего не работает.Удаление \ tkzMarkAnglesize = 0.5cm, mark = |;Линия позволит коду работать, но угол, очевидно, не будет отображаться.

\begin{figure}[ht]
\begin{center}
    \tikzset{every picture/.style={xscale=1,yscale=1}}
\begin{tikzpicture}
    \begin{axis}[
    domain=0:8,
    xmin=0, xmax=8,
    ymin=0, ymax=8,
    samples=400,
    yticklabels={,,},
    xticklabels={,,},
    ticks=none,
    axis y line=center,
    axis x line=middle,
    xscale=2, yscale=1.5,
    clip=false,
    ]
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates
    {(0,3) (8,7)};
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates
    {(6,6) (8,6)};
    \path
        (8,7)node(A){}
        (6,6)node(B){}
        (8,6)node(C){};
    \tkzMarkAngle[size=0.5cm,mark=|](A,B,C);    
    \node[label={180:{$\theta_H$}},circle,fill,inner sep=0pt] at (axis cs:0,3) {};
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates
    {(0,1) (8,3)};
    \node[label={180:{$\theta_L$}},circle,fill,inner sep=0pt] at (axis cs:0,1) {};
    \end{axis}
\end{tikzpicture}
\end{center}
\end{figure}

Ошибка: форма с именем B не известна

Вот минимальный рабочий пример (по запросу):

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{pgfplots}
\pgfplotsset{compat=1.11}
\usepackage{tkz-euclide}
\usepackage{tikz}
\usetkzobj{all}

\begin{document}
\begin{figure}[ht]
\begin{center}
\tikzset{every picture/.style={xscale=1,yscale=1}}
\begin{tikzpicture}
    \begin{axis}[
    domain=0:8,
    xmin=0, xmax=8,
    ymin=0, ymax=8,
    samples=400,
    yticklabels={,,},
    xticklabels={,,},
    ticks=none,
    axis y line=center,
    axis x line=middle,
    xscale=2, yscale=1.5,
    clip=false,
    ]
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates {(0,3) (8,7)};
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates {(6,6) (8,6)};
    \path
        (8,7)node(A){}
        (6,6)node(B){}
        (8,6)node(C){};
    \node[label={180:{$\theta_H$}},circle,fill,inner sep=0pt] at (axis cs:0,3) {};
    \addplot+[thick, smooth, mark=none, color=black, width=0.1in] plot coordinates {(0,1) (8,3)};
    \node[label={180:{$\theta_L$}},circle,fill,inner sep=0pt] at (axis cs:0,1) {};
    \end{axis}
\end{tikzpicture}
\end{center}
\end{figure}
\end{document}
...