Etwa mit Wie kann ich das Zahlenformat global festelegen? Öffne in Overleaf
%\documentclass[]{article} \documentclass[margin=5pt]{standalone} \usepackage{tikz} \begin{document} \pgfmathsetmacro\x{10+1} \pgfmathsetmacro\a{\x^(2/3)} \pgfmathsetmacro\b{sin(\x)} \pgfmathtruncatemacro\c{10+1} IST: \x, \a, \b, \c ~~ SOLL: \pgfmathprintnumber[fixed, fixed zerofill,precision=1]\x, \pgfmathprintnumber[fixed, fixed zerofill,precision=1]\a, \pgfmathprintnumber[fixed, fixed zerofill,precision=1]\b, \c \end{document} gefragt 18 Apr '18, 22:31 cis |
Mit beantwortet 18 Apr '18, 23:10 esdd |
Der "globale Trick" für einheitlich gerundetes Zahlenformat dürfte wohl die Verwendung des Paketes Öffne in Overleaf
\documentclass[margin=15pt, varwidth]{standalone} \usepackage{tikz} \usepackage{amsmath, amssymb} \usepackage[decimalsymbol=comma, % loctolang={DE:ngerman,UK:english}, % ??? ]{siunitx} \sisetup{round-mode=places,round-precision=1} % =3 \begin{document} \pgfmathsetmacro{\a}{5.6} % \pgfmathsetmacro{\R}{3.5} % \pgfmathsetmacro{\Gamma}{60} % \pgfmathsetmacro{\c}{2*\R*sin(\Gamma)} % \texttt{pgfmath: } $c = \c\text{ cm}$ \texttt{siunitx: } $c = \SI{\c}{\centi\metre}$ \end{document} beantwortet 26 Mai '19, 22:22 cis Ist dir klar, dass
(27 Mai '19, 09:55)
Ulrike Fischer
Ich mache mal eine Frage zum Thema auf und enditiere dann ggf. entsprechend.
(27 Mai '19, 16:53)
cis
|