pgfmath: Brüche korrekt ausgeben?
Mit Hilfe von `\pgfkeys{/pgf/number format/.cd,frac,frac shift={1}}` werden manche Brüche korrekt ausgegeben, z.B. `2/3`; andere aber weder mit noch ohne diese Einstellung, z.B. `233/19`.
Kann man da irgendwetwas irgendetwas machen?
[![alt text][1]][1]
\documentclass[border=15mm, varwidth]{standalone}
\usepackage{tikz}
\usetikzlibrary{fpu}
%\usepackage{fp} % nutzte auch nichts
\parindent0mm
\begin{document}
\foreach \Bruch in {233/19, 3/4, 10/2, 2/3,0.6666666}{
%\pgfkeys{/pgf/number format/.cd,fixed}
\pgfkeys{/pgf/number format/.cd,frac,frac shift={1}}
\Bruch \pgfmathparse{\Bruch}
= \pgfmathresult
= \pgfmathprintnumber[frac]{\pgfmathresult}
= \pgfmathprintnumber[frac,frac whole=false]{\pgfmathresult}\\[1em]
}
\end{document}
[1]: https://texwelt.de/wissen/upfiles/55555555_256.png