From 13092f06e2691bdb9652d5e4d4c03239015b0b89 Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Wed, 4 Feb 2026 09:58:49 +0100 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.47.3