pgfplots 轴乘数 \times 符号

pgfplots 轴乘数 \times 符号

如同这个问题,我想要 pgfplots 乘数的科学\times符号而不是 * 符号。但是,我需要它用于整个轴乘数,而不是像其他问题中那样用于每个刻度。

\documentclass{standalone}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}
    \begin{axis} [xmin=0, xmax=10000, ymin=0, ymax=10000]
        \addplot plot coordinates {(5000, 5000)};
    \end{axis}
\end{tikzpicture}
\end{document}

插图

答案1

Pgfplotstick scale binop对此有一个选项:

在此处输入图片描述

它位于路径下/pgfplots,因此:

\documentclass[border=10pt]{standalone}
\usepackage{pgfplots}

\begin{document}
\begin{tikzpicture}[/pgfplots/tick scale binop=\times]
    \begin{axis} [xmin=0, xmax=10000, ymin=0, ymax=10000]
        \addplot plot coordinates {(5000, 5000)};
    \end{axis}
\end{tikzpicture}
\end{document}

您还可以使用:

\begin{tikzpicture}
   \begin{axis} [tick scale binop=\times,xmin=0, xmax=10000, ymin=0, ymax=10000]

或者:

\pgfplotsset{tick scale binop=\times}

在序言中。结果:

在此处输入图片描述

相关内容