pgfplot 的圆线帽

pgfplot 的圆线帽

我不太喜欢 pgfplots 默认切断情节线的方式

在此处输入图片描述

line join=round,line cap=round如果TikZ 键可以应用于图形线条,我会更喜欢这种外观。但是将这些键添加到\pgfplotset不起作用,而且我找不到要使用的正确子类别(例如every plot axis/.append style)。

如果有人能帮助我那就太好了。

平均能量损失

\documentclass{article}

\usepackage{pgfplots}

\pgfplotsset{
    compat=newest,
    no marks,
    axis lines=middle,
    axis on top,
    every axis plot/.append style={very thick},
    enlarge y limits={abs=0.6pt}, % prevent clipping of plot lines
    every axis plot/.append style={line join=round,line cap=round,clip=false}
}

\begin{document}

\begin{center}
    \begin{tikzpicture}
        \begin{axis}[domain=0:pi]
            \addplot+{sin(deg(x))};
        \end{axis}
    \end{tikzpicture}
\end{center}

\end{document}

相关内容