yticklabels 问题

yticklabels 问题

我要从 .txt 文件中绘制某个函数。我想通过标记和标签在函数本身上指定/突出显示该函数的某个点。

此外,我想在 x 轴上加一个刻痕和一个标签。

您能建议执行该操作所需的代码吗?

谢谢你!!!

以下是我编写的代码。

\documentclass[a4paper, landscape, 8pt]{book}

\usepackage{etex}
\usepackage{etoolbox}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{microtype}

\usepackage{tikz, siunitx, pgfplots, relsize, pgfmath}
\usetikzlibrary{intersections, pgfplots.units}
\pgfplotsset{compat=newest}

\usepgfplotslibrary{units}

\begin{document}

\pgfplotsset{change x base,
            x SI prefix=milli,
            change y base,
            y SI prefix=micro
            }

\pgfplotsset{
every axis/.append style = {
font=\relsize{1},
% riguarda le tick labels
line width = 1pt,
% oppure: thin, semithick, thick,
% very thick
tick style = {line width = 1pt}
},
every axis x label/.append style = {
font = \relsize{2}
},
every axis y label/.append style = {
font = \relsize{2},
rotate = -90
%xshift = -0.7em,
%yshift = -1.4em
},
major grid style = {
line width = 0.5pt,
gray,
%dash pattern = on 4pt off 4pt
},
every axis title/.append style = {
font = \relsize{1}
},
legend style={at={(850e-3, 700e-3)},anchor=north, line width=1pt}
}

\begin{tikzpicture}
\begin{axis} 
    [   axis background/.style={fill=gray!15},
        %axis x line=bottom,
        %axis y line=left,
        xmin=-0.3, xmax=0.3,
        ymin=-0.000004, ymax=0.000004,
        x unit=V,
        %x unit prefix=m,
        y unit=A,
        %y unit prefix=u,
        minor x tick num = 1,
        minor y tick num = 1,
        width=12cm, height=9cm,
        grid=major,
        %xtick = {-0.3,-0.2,...,0.3},
        %ytick = {-0.000004,-0.000003,...,0.000004},
        xlabel = {$V_d$},
        ylabel=$I_{d_1}-I_{d_2}$
    ]
\addplot [thick, green!100] file {diffecorrenti.txt};
\end{axis}

\end{tikzpicture}

\end{document}

答案1

一种可能性;对于此示例,我使用了以下简单文件diffecorrenti.txt

1 2
3 -3
4 5
6 7

并抑制了原始代码中与问题和解决方案无关的部分。

在此处输入图片描述

  1. 对于第一个要求,您可以使用axis cs坐标系将具有某种预定义样式的 放置\node在图形中某一点的所需位置。在示例中,我通过两种方式实现了此目的:

    • 使用一个简单的\node实心圆形并使用键label来放置标签。
    • 使用 a\node和 apin添加标签。
  2. 对于第二个要求,您可以使用extra x ticks(也可能使用extra x tick labels)向 x 轴添加额外的刻度位置和刻度标签。

代码:

\documentclass{book}
\usepackage{pgfplots}

\pgfplotsset{compat=newest}

\tikzset{
every pin/.style={
  fill=orange!20,
  font=\footnotesize
  },
small dot/.style={
  fill=orange!70!black,
  circle,
  scale=0.5,
  }
}

\begin{document}

\begin{tikzpicture}
\begin{axis}[
   axis background/.style={fill=gray!15},
  minor x tick num = 1,
  minor y tick num = 1,
  width=12cm, 
  height=9cm,
  grid=major,
  xlabel = {$V_d$},
  ylabel=$I_{d_1}-I_{d_2}$,
  extra x ticks={1.2,4.7},
  extra x tick labels={extra1,extra2},
  extra x tick style={
    grid=none,
    font=\footnotesize\color{red},
    tick label style={rotate=90}
  }
]
\addplot [thick, green] file {diffecorrenti.txt};
\node[small dot,label=left:{$(4,5)$}] at (axis cs:4,5) {};
\node[small dot,pin=30:{$(3,-3)$}] at (axis cs:3,-3) {};
\end{axis}
\end{tikzpicture}

\end{document}

相关内容