Guest User

Untitled

a guest
Apr 2nd, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{tabu}
  3. %method 1:
  4. newlength{mylength}
  5. settoheight{mylength}{%
  6. begin{tabu}{|c|c|}
  7. test & test\
  8. test & test\
  9. test & test\
  10. test & test
  11. end{tabu}
  12. }
  13.  
  14. %method 2:
  15. newcommand{testtbl}{%
  16. begin{tabu}{|c|c|}
  17. test & test\
  18. test & test\
  19. test & test\
  20. test & test
  21. end{tabu}
  22. }
  23. newcommand{ntabht}{%
  24. setbox0=hbox{testtbl} theht0%
  25. }
  26. begin{document}
  27.  
  28. themylength
  29.  
  30. ntabht
  31. end{document}
Advertisement
Add Comment
Please, Sign In to add comment