[Tex/LaTex] pgfplots axis multiplier \times symbol

pgfplots

Similar to this question, I want the scientific \times symbol instead of the * symbol for pgfplots' multipliers.
However, I need it for the whole axis-multiplier and not for every tick like in the other question.

\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}

Illustration

Best Answer

Pgfplots has a tick scale binop option for this:

enter image description here

It is located under the /pgfplots path, hence:

\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}

You can also use:

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

or alternatively:

\pgfplotsset{tick scale binop=\times}

in the preamble. The result:

enter image description here

Related Question