PGFPLOTS So erhöhen Sie die Linienbreite, ohne die Breite des Markierungsrahmens zu erhöhen

PGFPLOTS So erhöhen Sie die Linienbreite, ohne die Breite des Markierungsrahmens zu erhöhen
    \documentclass{article}
\usepackage{pgfplots}

\begin{document}

\begin{tikzpicture}
\begin{axis}[
            axis lines = left,
            enlarge x limits=0.1,
            enlarge y limits=0.1,
            ]
        \addplot [
            mark=*,
            color=blue,
            scatter,
            scatter/use mapped color={draw=black},
            error bars/.cd,
            y dir = both, 
            y explicit,
            error bar style={color=black},
            ] table [x index=0, y index=1, y error index=2]{
            0 2 0.1
            2 0 0.1
            };
        \addplot [line width=2pt,
            mark=*,
            color=red,
            scatter,
            scatter/use mapped color={draw=black},
            error bars/.cd,
            y dir = both, 
            y explicit,
            error bar style={color=black},
            ] table [x index=0, y index=1, y error index=2]{
            0 0 0.1
            2 2 0.1
            };
            
\end{axis}
\end{tikzpicture}



\end{document}

Ergebnis

Wie erhöhe ich die Linienbreite, ohne die Breite des Markierungsrahmens zu verändern?

Antwort1

Der Zweck besteht darin, mark optionsdie Parameter der Markierungen zu steuern. Durch Wählen mark options={line width=0.4pt}können Sie die Linienbreite auf den Standardwert einstellen.

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.17}
\begin{document}

\begin{tikzpicture}
\begin{axis}[
            axis lines = left,
            enlarge x limits=0.1,
            enlarge y limits=0.1,
            ]
        \addplot [
            mark=*,
            color=blue,
            scatter,
            scatter/use mapped color={draw=black},
            error bars/.cd,
            y dir = both, 
            y explicit,
            error bar style={color=black},
            ] table [x index=0, y index=1, y error index=2]{
            0 2 0.1
            2 0 0.1
            };
        \addplot [line width=2pt,mark options={line width=0.4pt},
            mark=*,
            color=red,
            scatter,
            scatter/use mapped color={draw=black},
            error bars/.cd,
            y dir = both, 
            y explicit,
            error bar style={color=black},
            ] table [x index=0, y index=1, y error index=2]{
            0 0 0.1
            2 2 0.1
            };
            
\end{axis}
\end{tikzpicture}
\end{document}

Bildbeschreibung hier eingeben

verwandte Informationen