Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. begin{tabular}[]{l D{.}{.}{-1}}
  2. multirow{2}{1in}{Here is a ton of text that is not going
  3. to fit in one single line in this 1 inch column.} & 20.132 \
  4. vspace{5em} & (9.218) \
  5. & \
  6. Next thing & 1.311 \
  7. & (0.182)
  8. end{tabular}
  9.  
  10. Here is a ton of 20.132
  11. text that is not (9.218)
  12. going to fit in one
  13. single line in this
  14. 1 inch column.
  15.  
  16. Next thing 1.311
  17. (0.182)
  18.  
  19. documentclass{article}
  20. usepackage{dcolumn}% http://ctan.org/pkg/dcolumn
  21.  
  22. begin{document}
  23.  
  24. begin{tabular}{p{1in} l}
  25. Here is a ton of text
  26. that is not going
  27. to fit in one single line
  28. in this 1 inch column. & begin{tabular}[t]{D{.}{.}{-1}}
  29. 20.132 \
  30. (9.218)
  31. end{tabular} \ \
  32. Next thing. Here is a
  33. ton of text that is not
  34. going to fit in one
  35. single line in this
  36. 1 inch column. & begin{tabular}[t]{D{.}{.}{-1}}
  37. 111.311 \
  38. (0.182)
  39. end{tabular}
  40. end{tabular}
  41.  
  42. end{document}
  43.  
  44. documentclass{article}
  45. usepackage{dcolumn}
  46. defDTab#1{multicolumn{1}{@{}c@{}}{tabular[t]{D{.}{.}{-1}}#1endtabular}}
  47. begin{document}
  48.  
  49. begin{tabular}{ p{1in} D{.}{.}{-1}}
  50. Here is a ton of text that is not going
  51. to fit in one single line in this 1 inch column. & DTab{20.132\(9.218)} & Next thing & 1.311 & (0.182)
  52. end{tabular}
  53.  
  54. end{document}
  55.  
  56. documentclass{article}
  57. begin{document}
  58. begin{tabular}[]{p{4.5cm}p{1cm}}
  59. Here is a ton of text that is not going
  60. to fit in one single line in this 1 inch column. & 20.132 (9.218) \\
  61.  
  62. Next thing & 1.311 (0.182)
  63. end{tabular}
  64. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement