.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
질문 및 솔루션과 관련이 없는 원본 코드 부분을 숨겼습니다.
첫 번째 요구 사항의 경우 좌표계를 사용하여 그래프의 한 지점에서 원하는 위치에 미리 정의된 스타일을
axis cs
배치 할 수 있습니다.\node
이 예에서는 두 가지 방법으로 이 작업을 수행했습니다.\node
채워진 원 모양의 간단한 것을 사용 하고label
열쇠를 사용하여 라벨을 배치했습니다.- a
\node
및 a를 사용하여pin
라벨을 추가합니다.
두 번째 요구 사항의 경우
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}