From e30352d4bd858be19f98e1f1c7979bb7e68d8763 Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Mon, 19 Jun 2023 17:52:12 +0200 Subject: [PATCH] Add basic document template. --- cv.tex | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 cv.tex diff --git a/cv.tex b/cv.tex new file mode 100644 index 0000000..a1b9e95 --- /dev/null +++ b/cv.tex @@ -0,0 +1,28 @@ +\documentclass[11pt]{article} + +\title{ Title} +\author{ Jakub Czajka } +\date{\today} + +\begin{document} +\maketitle +\pagebreak + +% Optional TOC +% \tableofcontents +% \pagebreak + +%--Paper-- + +\section{Section 1} + +Lorem Impsum + + +\pagebreak +\section{Section 2} +Lorem Ipsum \\ + +%--/Paper-- + +\end{document} -- 2.39.5