PGFPlots: Como cortar seletivamente marcas específicas por eixos?

PGFPlots: Como cortar seletivamente marcas específicas por eixos?

Neste MWE, preciso cortar as marcas dos quadrados amarelos pelos eixos, mantendo intactos os diamantes vermelhos.

\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}[
            xmin=0, xmax=1,
            ymin=0, ymax=1,
            domain=0:1,
            every axis plot post/.append style={
                line width=2pt,
            }
        ]
            \addplot [ mark=square*, mark size=4pt,
            mark options={fill=yellow, line width = 0.5pt}, samples = 3 ] {x};
            \addplot [ only marks,  mark=diamond*, mark size=5pt,
            mark options={fill=red, line width = 0.5pt}, samples = 2 ] {x};
        \end{axis}
    \end{tikzpicture}
\end{document}

insira a descrição da imagem aqui


Termo aditivo

clip marker pathsopção não funciona ao usar camadas. Como isso pode ser resolvido neste caso?

\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest,
layers/my layer set/.define layer set={bg,main,fg}{},
set layers=my layer set,
mark layer=like plot}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}[
            xmin=0, xmax=1,
            ymin=0, ymax=1,
            domain=0:1,
            every axis plot post/.append style={
                line width=2pt,
            }
        ]
            \addplot [ mark=square*, mark size=4pt,
            mark options={fill=yellow, line width = 0.5pt}, samples = 3, clip marker paths, on layer = bg ] {x};
            \addplot [ only marks,  mark=diamond*, mark size=5pt,
            mark options={fill=red, line width = 0.5pt}, samples = 2, on layer = fg ] {x};
        \end{axis}
    \end{tikzpicture}
\end{document}

Responder1

Adicione a opção clip marker pathsao gráfico fazendo os marcadores amarelos.

Editar:Conforme apontado, isso não funciona ao usar camadas. No entanto, usar clip mode=individualem vez disso parece funcionar.

insira a descrição da imagem aqui

\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest,
layers/my layer set/.define layer set={bg,main,fg}{},
set layers=my layer set,
mark layer=like plot}
\begin{document}
    \begin{tikzpicture}
        \begin{axis}[
            xmin=0, xmax=1,
            ymin=0, ymax=1,
            domain=0:1,
            every axis plot post/.append style={
                line width=2pt,
            }
        ]
            \addplot [ mark=square*, mark size=4pt,
            mark options={fill=yellow, line width = 0.5pt}, samples = 3, on layer = bg,
            clip mode=individual % <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
            ] {x};
            \addplot [ only marks,  mark=diamond*, mark size=5pt,
            mark options={fill=red, line width = 0.5pt}, samples = 2, on layer = fg ] {x};
        \end{axis}
    \end{tikzpicture}
\end{document}

informação relacionada