
Exemplo:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{xcolor}
% Define TikZ styles for interpolation points and values
\newcommand{\interpolationPointStyle}{%
\tikzset{interpolation point/.style={circle, inner sep=1.5pt, fill=black}}
}
\begin{document}
\begin{tikzpicture}
\interpolationPointStyle
\begin{axis}[
xlabel={$x$},
ylabel={$y$},
ymin=0,
xtick=\empty,
axis background/.style={fill=white},
clip=false,
]
% Define array of tick positions
\def\myxticks{3, 4, 5}
% Loop over tick positions and draw interpolation points
\foreach \tick in \myxticks {
\edef\tmp{\noexpand\node[interpolation point] at (axis cs:\tick,0) {};}
\tmp
}
% Curve 1
\addplot[color=red, mark=none, smooth] coordinates {
(3, 0.5)
(4, 0.6)
(5, 0.4)
};
\addlegendentry{Curve 1}
% Interpolation points
\addlegendimage{interpolation point}
\addlegendentry{Interpolation Points}
\end{axis}
\end{tikzpicture}
\end{document}
produzindo a saída
Pergunta:
Quero ter o símbolo do ponto de interpolação que desenhei no eixo x da legenda. Achei que isso funcionaria colocando-o em uma imagem de legenda, mas aparece uma linha reta.
O que deve ser corrigido?
Responder1
Então esta é a minha modificação no seu código:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{tikz}
\usepackage{xcolor}
% Define TikZ styles for interpolation points and values
\newcommand{\interpolationPointStyle}{%
\tikzset{interpolation point/.style={circle, inner sep=1.5pt, fill=black}}
}
\begin{document}
\begin{tikzpicture}
\interpolationPointStyle
\begin{axis}[
xlabel={$x$},
ylabel={$y$},
ymin=0,
xtick=\empty,
axis background/.style={fill=white},
clip=false,
legend style={at={(0.5,-0.2)}, anchor=north, legend columns=-1}
]
% Define array of tick positions
\def\myxticks{3, 4, 5}
% Loop over tick positions and draw interpolation points
\foreach \tick in \myxticks {
\edef\tmp{\noexpand\node[interpolation point] at (axis cs:\tick,0) {};}
\tmp
}
% Curve 1
\addplot[color=red, mark=none, smooth] coordinates {
(3, 0.5)
(4, 0.6)
(5, 0.4)
};
\addlegendentry{Curve 1}
% Manually create legend entry for interpolation points
\addlegendimage{only marks, mark=*, mark options={fill=black, scale=0.8}}
\addlegendentry{Interpolation Points}
\end{axis}
\end{tikzpicture}
\end{document}
Isso deve produzir uma saída como esta:
Tomei a liberdade de colocar a legenda no final. Desculpe por isso. Pessoalmente, acho que você está enfrentando problemas porque \addlegendimage
não usa diretamente os comandos de desenho do TikZ, portanto não reconhece o estilo TikZ para seus pontos de interpolação.
Essa é apenas a minha teoria, não tenho 100% de certeza.
Responder2
Encontrei uma solução para o meu problema:
\documentclass{article}
\usepackage{pgfplots}
\usepackage{xcolor}
% Define TikZ styles for interpolation points
\newcommand{\interpolationPointStyle}{%
\tikzset{interpolation point/.style={circle, inner sep=1.5pt, fill=black}}
}
% Define custom legend styles for interpolation points
\pgfplotsset{
interpolation point legend/.style={
legend image code/.code={
\node[interpolation point] at (0.3cm,0cm) {};
}
},
}
\begin{document}
\begin{tikzpicture}
\interpolationPointStyle
\begin{axis}[
xlabel={$x$},
ylabel={$y$},
ymin=0,
xtick=\empty,
axis background/.style={fill=white},
clip=false,
]
% Define array of tick positions
\def\myxticks{3, 4, 5}
% Loop over tick positions and draw interpolation points
\foreach \tick in \myxticks {
\edef\tmp{\noexpand\node[interpolation point] at (axis cs:\tick,0) {};}
\tmp
}
% Curve 1
\addplot[color=red, mark=none, smooth] coordinates {
(3, 0.5)
(4, 0.6)
(5, 0.4)
};
\addlegendentry{Curve 1}
\addlegendimage{interpolation point legend}
\addlegendentry{Interpolation Points}
\end{axis}
\end{tikzpicture}
\end{document}
Saída: