Created
April 19, 2020 19:48
-
-
Save TorbjornT/42d57c860a91f60f1db3b2cb2c442e8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\begin{tikzpicture}[ | |
font=\fontsize{18}{18}\selectfont, | |
index/.style={left, Gray, font=\normalsize} | |
] | |
\foreach [count=\n] \N in {% | |
976867695082.87,9772.9216,115698983.3302,61074171.8288, | |
81872.56,118010166.2449,1036600250.575,271528084.6175, | |
3591829.37023,4735855358.70} | |
{ | |
\node [index] at (0,{-(\n-1)*2.1}) {\n.}; | |
\ifnum\n>6 | |
\sisetup{group-separator = {.},output-decimal-marker = {,}} | |
\fi | |
\node[right] at (0,{-(\n-1)*2.1}) {\num{\N}}; | |
} | |
\foreach [count=\n,count=\m from 11] \N in {% | |
6162795621.24653,95475.63,18964906.93874, | |
424743070.9,6886.7,7038.187,944938652566.421, | |
2927184.8,8376.65,235261584236.51} | |
{ | |
\node [index] at (8.5,{-(\n-1)*2.1}) {\m.}; | |
\ifnum\n>4 | |
\sisetup{group-separator = {\,},output-decimal-marker = {,}} | |
\fi | |
\node[right] at (8.5,{-(\n-1)*2.1}) {\num{\N}}; | |
} | |
\end{tikzpicture} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment