Advertisement
MWTab

Untitled

Oct 8th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. % Testing New Table
  2.  
  3. This is a test.
  4.  
  5. ----------------- ---------------------------- -----------------------------------
  6. Key Combination Action Comment
  7. ----------------- ---------------------------- -----------------------------------
  8. Ctrl+Alt+Escape | Opens something like | This is a very long explanation, just to see if the table comes out ok.
  9.  
  10. Alt+Escape | Another action | This is a somehwat shorter comment.
  11. ----------------- ---------------------------- -----------------------------------
  12.  
  13.  
  14. # very simple latex
  15.  
  16. \begin{tabular}{|l|l|}\hline
  17. Age & Frequency \\ \hline
  18. 18--25 & 15 \\
  19. 26--35 & 33 \\
  20. 36--45 & 22 \\ \hline
  21. \end{tabular}
  22.  
  23.  
  24.  
  25. # trying latex again
  26.  
  27. \begin{table}[h!]
  28. \begin{center}
  29. \caption{Your first table.}
  30. \label{tab:table1}
  31. \begin{tabular}{l|c|r} % <-- Alignments: 1st column left, 2nd middle and 3rd right, with vertical lines in between
  32. \textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
  33. $\alpha$ & $\beta$ & $\gamma$ \\
  34. \hline
  35. 1 & 1110.1 & a\\
  36. 2 & 10.1 & b\\
  37. 3 & 23.113231 & c\\
  38. \end{tabular}
  39. \end{center}
  40. \end{table}
  41.  
  42.  
  43. # another attempt now with dashes
  44.  
  45. ---
  46. \begin{table}[h!]
  47. \begin{center}
  48. \caption{Your first table.}
  49. \label{tab:table1}
  50. \begin{tabular}{l|c|r} % <-- Alignments: 1st column left, 2nd middle and 3rd right, with vertical lines in between
  51. \textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
  52. $\alpha$ & $\beta$ & $\gamma$ \\
  53. \hline
  54. 1 & 1110.1 & a\\
  55. 2 & 10.1 & b\\
  56. 3 & 23.113231 & c\\
  57. \end{tabular}
  58. \end{center}
  59. \end{table}
  60. ---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement