| ... | ... | @@ -54,3 +54,19 @@ If you want to have running numbers in your list, use ```enumerate```: |
|
|
|
```
|
|
|
|
|
|
|
|
If you want to create more complex listings, refer to the document: https://www.overleaf.com/learn/latex/Lists
|
|
|
|
|
|
|
|
## Tables
|
|
|
|
|
|
|
|
Tables in LaTeX are quite intimidating at first, but once you learn them you can create professional looking tables for your data easily. Here is an example code of a basic list:
|
|
|
|
|
|
|
|
```
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{ c c c }
|
|
|
|
cell1 & cell2 & cell3 \\
|
|
|
|
cell4 & cell5 & cell6 \\
|
|
|
|
cell7 & cell8 & cell9
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
```
|
|
|
|
|
|
|
|
This code snippet creates a 3x3 table without any separator lines and the cells centered. Documentation for creating more complex tables can be found at: https://www.overleaf.com/learn/latex/Tables |
|
|
\ No newline at end of file |