diff --git a/.gitignore b/.gitignore index b6e4761..1b8b316 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,7 @@ dmypy.json # Pyre type checker .pyre/ + +# LaTeX +*.aux +*.log diff --git a/026-latex-multicolumn/Makefile b/026-latex-multicolumn/Makefile new file mode 100644 index 0000000..351a0d5 --- /dev/null +++ b/026-latex-multicolumn/Makefile @@ -0,0 +1,2 @@ +make: + pdflatex multicolumn.tex diff --git a/026-latex-multicolumn/multicolumn.pdf b/026-latex-multicolumn/multicolumn.pdf new file mode 100644 index 0000000..3cdc19d Binary files /dev/null and b/026-latex-multicolumn/multicolumn.pdf differ diff --git a/026-latex-multicolumn/multicolumn.tex b/026-latex-multicolumn/multicolumn.tex new file mode 100644 index 0000000..5ac7773 --- /dev/null +++ b/026-latex-multicolumn/multicolumn.tex @@ -0,0 +1,36 @@ +\documentclass[twocolumn]{article} +\usepackage{lipsum} +\usepackage{booktabs} +\begin{document} + +\title{Two-Column Document with Lorem Ipsum} +\author{Your Name} +\date{\today} + +\maketitle + +\begin{abstract} +This is a sample document with two columns filled with Lorem Ipsum text. +\end{abstract} + + +\lipsum[1-10] % Adjust the range to change the amount of Lorem Ipsum text + +\pagebreak +\begin{table}[h] + \centering + \caption{EU Countries Information} + \begin{tabular}{lcccc} + \toprule + \textbf{Country} & \textbf{Population (millions)} & \textbf{Area (km\textsuperscript{2})} & \textbf{Capital} & \textbf{Official Language} \\ + \midrule + Austria & 8.9 & 83,879 & Vienna & German \\ + Belgium & 11.5 & 30,689 & Brussels & Dutch, French, German \\ + Czech Republic & 10.7 & 78,866 & Prague & Czech \\ + Denmark & 5.8 & 42,951 & Copenhagen & Danish \\ + Finland & 5.5 & 338,424 & Helsinki & Finnish, Swedish \\ + \bottomrule + \end{tabular} +\end{table} + +\end{document} diff --git a/files.json b/files.json index 9ea5554..75d1f05 100644 --- a/files.json +++ b/files.json @@ -327,6 +327,16 @@ "images": 1, "forms": 0, "annotations": {} + }, + { + "path": "026-latex-multicolumn/multicolumn.pdf", + "producer": "pdfTeX-1.40.21", + "creation_date": "2024-01-03T09:38:26", + "encrypted": false, + "pages": 2, + "images": 0, + "forms": 0, + "annotations": {} } ] }