pgfplots:在軸定義後繪製額外的刻度

pgfplots:在軸定義後繪製額外的刻度

考慮以下 MWE,其中繪製了一個範例正弦函數:

\documentclass[border=2mm,tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{intersections}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}
\begin{axis}[width=\textwidth,
             xmin=-0.1, xmax=10.5,
             ymin=-1.9, ymax=1.9,
             axis lines=middle,
             x axis line style={name path=xaxis}]

    \addplot[name path global=plot1,domain=0:10, samples=101]{sin(deg(x))};

\path [draw,name intersections={of={plot1 and xaxis}}]
  (intersection-1) node (A) {}
  (intersection-2) node (B) {}
  (intersection-3) node (C) {}
  (intersection-4) node (D) {};

\end{axis}
\end{tikzpicture}

\end{document}

它確定繪圖與 x 軸相交的點,並且在定義軸之前我無法運行它。是否可以在這些交點的 x 軸上定義額外的刻度?如果是,怎麼辦?


編輯:當然,這個問題與不知名的函數有關,其零點無法透過分析確定和/或未知先驗

答案1

這是一個在循環中添加刻度的提案。它透過以軸單位的距離 1 標準化交叉點來計算交叉點的 x 座標。

\documentclass[border=2mm,tikz]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{calc,intersections}
\pgfplotsset{compat=1.16}
\begin{document}

\begin{tikzpicture}
\begin{axis}[width=\textwidth,
             xmin=-0.1, xmax=10.5,
             ymin=-1.9, ymax=1.9,
             axis lines=middle,
             x axis line style={name path=xaxis},
             clip mode=individual]

    \addplot[name path global=plot1,domain=0:10, samples=101]{sin(deg(x))};

\path [draw,name intersections={of={plot1 and xaxis},total=\t}]
 let \p0=($(1,0)-(0,0)$) in
 foreach \X in {1,...,\t}
 {let  \p1=($(intersection-\X)-(0,0)$) in 
 ([yshift=2pt]intersection-\X) edge ([yshift=-2pt]intersection-\X) 
  node[above]{$\pgfmathparse{\x1/\x0}\pgfmathprintnumber\pgfmathresult$} };
\end{axis}
\end{tikzpicture}
\end{document}

在此輸入影像描述

顯然,如果您了解函數,您可以透過在 pi 上標準化它們來漂亮地列印刻度。

\documentclass[border=2mm,tikz]{standalone}
\usepackage{pgfplots}
\usetikzlibrary{calc,intersections}
\pgfplotsset{compat=1.16}
\begin{document}

\begin{tikzpicture}
\begin{axis}[width=\textwidth,
             xmin=-0.1, xmax=10.5,
             ymin=-1.9, ymax=1.9,
             axis lines=middle,
             x axis line style={name path=xaxis},
             clip mode=individual]

    \addplot[name path global=plot1,domain=0:10, samples=101]{sin(deg(x))};

\path [draw,name intersections={of={plot1 and xaxis},total=\t}]
 let \p0=($(1,0)-(0,0)$) in
 foreach \X in {1,...,\t}
 {let  \p1=($(intersection-\X)-(0,0)$) in 
 ([yshift=2pt]intersection-\X) edge ([yshift=-2pt]intersection-\X) 
  node[above]{$\pgfmathparse{\x1/\x0/pi}\ifdim\pgfmathresult pt<0.1pt
  0
  \else
   \ifdim\pgfmathresult pt<1.1pt
    \pi
   \else
    \pgfmathprintnumber\pgfmathresult\pi
   \fi  
  \fi$} };
\end{axis}
\end{tikzpicture}
\end{document}

在此輸入影像描述

相關內容