使用 pgfplots 繪製軸和線之間的角度

使用 pgfplots 繪製軸和線之間的角度

我嘗試使用 pgfplots 在一條線和 X 軸之間繪製一個角度,我看到了很多使用 tikz 和其他套件的方法,但是,有什麼方法可以使用 pgfplots 來做到這一點嗎?

\documentclass{article}

\usepackage{pgfplots}

\begin{document}

\begin{tikzfigure}
    \begin{axis}[
            axis x line = center,
            axis y line = center,
            xlabel = $x$,
            ylabel = $y$,
              xmin=-1.0,
              xmax=3.0,
              ymin=-1.0,
              ymax=3.0,
          disabledatascaling,
          axis equal,
        ]
    \addplot [->, color=blue] coordinates {(0, 0) (2, 3)};
\end{axis}

\end{tikzfigure}
\end{document}

我可以寫什麼來獲得這樣的角度? 角度

答案1

不是直接的,但我也不認為有必要這樣做。但當然你可以只定義 3 個座標,然後使用angles函式庫來繪製需要的角度。

% used PGFPlots v1.17
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
    \usetikzlibrary{
        angles,
        quotes,
    }
    % use this `compat` level or higher so TikZ coordinates
    % are in axis units by default
    \pgfplotsset{compat=1.11}
\begin{document}
\begin{tikzpicture}
    \begin{axis}[
        axis lines=center,
        xlabel=$x$,
        ylabel=$y$,
        xmin=-1.0,
        xmax=3.0,
        ymin=-1.0,
        ymax=3.0,
        disabledatascaling,
        axis equal,
    ]
        \coordinate (xaxis) at (\pgfkeysvalueof{/pgfplots/xmax},0);
        \coordinate (origin) at (0,0);
        \addplot [->,blue] coordinates {(0, 0) (2, 3)}
            coordinate [at end] (A)
        ;
        \path (xaxis) -- (origin) -- (A)
            pic [
                draw,
                ->,
                red,
                angle radius=10mm,
                angle eccentricity=1.2,
                "$\theta$",
            ] {angle = xaxis--origin--A}
        ;
    \end{axis}
\end{tikzpicture}
\end{document}

顯示上述程式碼結果的圖像

相關內容