thorpedosg

Untitled

Jul 24th, 2018
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. documentclass{article}
  2. usepackage{tikz}
  3. begin{document}
  4. SweaveOpts{concordance=TRUE}
  5. begin{tabular}{r | r }
  6. TITLE 1 & Title 2 \
  7. More text & 2 \
  8. Other Text & 3 \
  9. end{tabular}
  10. end{document}
  11.  
  12. <table>
  13. <caption>My Table caption </caption>
  14.  
  15. <tr>
  16. <th scope="col">Title 1</th>
  17. <th scope="col">Title 2</th>
  18. </tr>
  19.  
  20. <tr>
  21. <th scope="row">Row 1</th>
  22. <td>More Text </td>
  23. <td>2</td>
  24. </tr>
  25.  
  26. <tr>
  27. <th scope="row">Row 2</th>
  28. <td>Other Text</td>
  29. <td>3</td>
  30. </tr>
  31.  
  32. </table>
Add Comment
Please, Sign In to add comment