Skip to content

Instantly share code, notes, and snippets.

@TorbjornT
Created April 19, 2020 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TorbjornT/42d57c860a91f60f1db3b2cb2c442e8d to your computer and use it in GitHub Desktop.
Save TorbjornT/42d57c860a91f60f1db3b2cb2c442e8d to your computer and use it in GitHub Desktop.
\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