Advertisement
Guest User

Untitled

a guest
Jul 27th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. ifdefinedHCode
  2. % HTML branch...
  3. else
  4. % PDF branch...
  5. fi
  6.  
  7. ifdefinedHCode
  8. documentclass{book}
  9. else
  10. documentclass[11pt,a4paper]{book}
  11. usepackage{longtable}
  12. usepackage{tabu}
  13. fi
  14.  
  15. begin{document}
  16.  
  17. % Define table header differently if we are produced HTML or PDF
  18. ifdefinedHCode
  19. %for HTML
  20. begin{tabular}{|l|l|}
  21. hline
  22. A & B \
  23. hline
  24. else
  25. % For PDF
  26. begin{longtabu} to linewidth {|X|X|}
  27. hline
  28. rowfont A & B \ hline
  29. hline
  30. endhead
  31. fi
  32.  
  33. 1 & 2 \ hline
  34. 3 & 4 \ hline
  35.  
  36. % Close correctly the table depending on output
  37. ifdefinedHCode
  38. % for HTML
  39. end{tabular}
  40. else
  41. % For PDF
  42. end{longtabu}
  43. fi
  44.  
  45. end{document}
  46.  
  47. Runaway argument?
  48. global advance c@LT@chunks @ne global LT@rows z@ setbox z@ vbox ETC.
  49.  
  50. ! Forbidden control sequence found while scanning use of LT@nofcols.
  51. <inserted text>
  52. par
  53. l.35 end{tabular}
  54.  
  55. ?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement