pgfplots 图例中的虚线导致标记不完整

pgfplots 图例中的虚线导致标记不完整

当我自己定义 pgfplots 图例条目时,我在将虚线与标记结合使用时遇到了问题。标记也是虚线(或点线等),就像附带的线一样。有没有办法确保在使用虚线/点线/等线时标记完全绘制?

梅威瑟:

\documentclass{report}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}
    \begin{axis}[
    legend pos=south east,
    legend entries={Entry 1,Entry 2,Entry 3}
    ]
    \addlegendimage{blue,only marks,mark=oplus}
    \addlegendimage{blue,dashed,no marks}
    \addlegendimage{blue,dashed,mark=oplus}
    \addplot+[black,no marks,domain=0:10]
    {x^2};
    \end{axis}
\end{tikzpicture}

\end{document}

在此处输入图片描述

答案1

用这个:

\addlegendimage{blue,dashed,mark=oplus,mark options=solid}

相关内容