Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. siunitx error: "invalid-number" Invalid numerical input 'e'
  2.  
  3. documentclass{article}
  4.  
  5. begin{document}
  6. begin{table}[]
  7. centering
  8. caption{Test table}
  9. begin{tabular}{|l|c|c|c|c|c|c|}
  10. hline
  11. & multicolumn{5}{c|}{Numbers 1 [si{millivolt}]} & Mean $pm$ max. Variance [si{millivolt}] \ hline hline
  12. P1 & -241 & -274 & -272 & -258 & -283 & -266 \ hline
  13. P2 & -94 & -99 & -100 & -114 & -105 & -102 \ hline
  14. P3 & 600 & 593 & 595 & 580 & 590 & 511 \ hline
  15. P4 & 300 & 300 & 300 & 290 & 297 & 301 \ hline
  16. P5 & -730 & -734 & -732 & -778 & -741 & -738 \ hline
  17. end{tabular}
  18. end{table}
  19. end{document}
  20.  
  21. documentclass{article}
  22. usepackage{siunitx}
  23. begin{document}
  24. begin{table}
  25. centering
  26. caption{Test tablestrut} % use 'strut' to create a bit more vert. separation
  27. begin{tabular}{|l|*{6}{S[table-format=-3.0]|}}
  28. hline
  29. & multicolumn{5}{c|}{Numbers 1 [si{millivolt}]}
  30. & {Mean $pm$ max. Variance [si{millivolt}]} \
  31. hline hline
  32. P1 & -241 & -274 & -272 & -258 & -283 & -266 \ hline
  33. P2 & -94 & -99 & -100 & -114 & -105 & -102 \ hline
  34. P3 & 600 & 593 & 595 & 580 & 590 & 511 \ hline
  35. P4 & 300 & 300 & 300 & 290 & 297 & 301 \ hline
  36. P5 & -730 & -734 & -732 & -778 & -741 & -738 \ hline
  37. end{tabular}
  38. end{table}
  39. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement