Mir ist aufgefallen, dass Ich wollte die Schriftart der Zahlen auf den Achsen ändern. Öffne in Overleaf
%\documentclass[]{article} \documentclass[border=3pt, varwidth]{standalone} \usepackage{pgfplots} \pgfplotsset{width=7cm,compat=1.13} \begin{document} \begin{tikzpicture} \begin{axis}[enlargelimits=false, ticklabel style={font=\ttfamily}, % Schriftart wird nicht angenommen? ] \addplot[ matrix plot, mark=*,%nodes near coords=\coordindex, mesh/color input=explicit, ] coordinates { (1,1) [color=red] (2,1) [color=blue] (3,1) [color=yellow] (1,2) [color=black] (2,2) [color=brown] (3,2) [color=magenta] (1,3) [color=green] (2,3) [color=red] (3,3) [color=white] }; \end{axis} \end{tikzpicture} \noindent Ist: 1 2 3 \\ Soll: \texttt{1 2 3 } \end{document} gefragt 15 Jan '18, 19:42 cis |
Öffne in Overleaf
\documentclass{article} \usepackage{pgfplots} \pgfplotsset{width=7cm,compat=1.13} \begin{document} \begin{tikzpicture} \begin{axis}[enlargelimits=false, xticklabel={$\mathtt{\pgfmathprintnumber{\tick}}$}, yticklabel={$\mathtt{\pgfmathprintnumber{\tick}}$}, ] \addplot[ matrix plot, mark=*,%nodes near coords=\coordindex, mesh/color input=explicit, ] coordinates { (1,1) [color=red] (2,1) [color=blue] (3,1) [color=yellow] (1,2) [color=black] (2,2) [color=brown] (3,2) [color=magenta] (1,3) [color=green] (2,3) [color=red] (3,3) [color=white] }; \end{axis} \end{tikzpicture} \noindent Ist: 1 2 3 \\ Soll: \texttt{1 2 3 } \end{document} beantwortet 16 Jan '18, 01:00 Henri |