Guest User

Untitled

a guest
Jun 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. documentclass[12pt,english]{article}
  2. usepackage{siunitx}
  3. sisetup{group-minimum-digits={3},input-ignore={,$},input-decimal-markers=
  4. {.},group-separator={,}}
  5. begin{document}
  6. begin{table}
  7. begin{tabular}{lS}
  8. Row1 & $226,108 \
  9. Row2 & $8,498,296 \
  10. end{tabular}
  11. end{table}
  12. end{document}
  13.  
  14. documentclass[12pt,english]{article}
  15. usepackage{siunitx}
  16. sisetup{table-format=7,
  17. table-space-text-pre = USD,
  18. table-align-text-pre = false,
  19. group-separator={,},
  20. input-decimal-markers={.}
  21. }
  22. usepackage{etoolbox}
  23.  
  24. begin{document}
  25. begin{table}
  26. newrobustcmdUSD{$}
  27. begin{tabular}{lS}
  28. Row1 & USD 226 108 \
  29. Row2 & USD 8 498 296 \
  30. end{tabular}
  31. end{table}
  32. end{document}
Add Comment
Please, Sign In to add comment