“无标记”的地块在参考文献中有标记

“无标记”的地块在参考文献中有标记

我想绘制一些没有标记的函数并在我的文本中引用它们 - 问题是文本中有一些随机标记并且我无法以某种方式将它们关闭。

\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{
plotl/.style={blue,no marks,ultra thick,domain=-2:2,samples=50},
plotd/.style={red,no marks,ultra thick,domain=-2:2,samples=50}
}
\begin{document}
Text blablbalbal \ref{plot:probH} blablalbalba \ref{plot:probL}\\
\begin{tikzpicture}
    \begin{axis}[width=\textwidth,height= 200pt,legend pos=north east,xlabel = $E_x$, ylabel=$p_x$]
\addplot+[plotl]{0.15*exp(-x/0.5)/(0.5*sinh(4)};\addlegendentry{$T = 0.5$}\label{plot:probL}
\addplot+[plotd]{0.15*exp(-x/4)/(4*sinh(0.5)};\addlegendentry{$T = 4.0$}\label{plot:probH}
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

答案1

删除+之后的\addplot+表示除了 在 中指定的绘图选项之外,您还想保留正常的循环列表选项(包括标记)处于活动状态[...]

相关内容