Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. documentclass[final,a4paper,notitlepage,10pt]{report}
  2.  
  3. usepackage[utf8]{inputenc} % inputenc for encoding to utf8
  4.  
  5. setlengthparindent{0pt}
  6.  
  7. begin{document}
  8. thispagestyle{empty} % this page does not have a header
  9.  
  10. Testing some text on the first line.\
  11. begin{tabular}{l l}\
  12. Lorem ipsum & dolor sit amet
  13. end{tabular}\
  14. Why was the table above indented? and how can I reduce the space between first line and start of the table?
  15.  
  16. end{document}
  17.  
  18. documentclass[final,a4paper,notitlepage,10pt]{report}
  19. usepackage[showframe]{geometry}
  20. usepackage[utf8]{inputenc} % inputenc for encoding to utf8
  21.  
  22. setlengthparindent{0pt}
  23.  
  24. begin{document}
  25. thispagestyle{empty} % this page does not have a header
  26.  
  27. Testing some text on the first line.
  28.  
  29. vspace*{-baselineskip}
  30. begin{tabular}{@{}l l}\
  31. Lorem ipsum & dolor sit amet
  32. end{tabular}\
  33. Why was the table above indented? and how can I reduce the space between first line and start of the table?
  34. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement