diff --git a/zad 11/main.tex b/zad 11/main.tex new file mode 100644 index 0000000..56de795 --- /dev/null +++ b/zad 11/main.tex @@ -0,0 +1,83 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Compact Academic CV +% LaTeX Template +% Version 2.0 (6/7/2019) +% +% This template originates from: +% https://www.LaTeXTemplates.com +% +% Authors: +% Dario Taraborelli (http://nitens.org/taraborelli/home) +% Vel (vel@LaTeXTemplates.com) +% +% License: +% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%---------------------------------------------------------------------------------------- +% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS +%---------------------------------------------------------------------------------------- + +\documentclass[11pt]{article} % Default document font size + +\input{structure.tex} % Include the file specifying the document structure and styling + +% Set PDF meta-information +\hypersetup{ + pdftitle={Miłosz Jabłoński - Curriculum vitae}, + pdfauthor={Miłosz Jabłoński} +} + +%---------------------------------------------------------------------------------------- + +\begin{document} + +%---------------------------------------------------------------------------------------- +% CONTACT AND GENERAL INFORMATION +%---------------------------------------------------------------------------------------- +\includegraphics[width=0.2\textwidth, right]{pic.jpeg} +{\LARGE\bfseries Miłosz Jabłoński} % Name + +ul. Jasna 7/2\\ % Address +Bydgoszcz 12-345 +\medskip % Whitespace + +Telefon: 123 456 789\\ % Phone number + +Email: \href{mailto:jablonskimilosz@gmail.com}{jablonskimilosz@gmail.com}\\ % Email address +Data urodzenia: 24.04.2000 r. + +%------------------------------------------------ + +\section*{Aktualne zajęcie} + +Studia informatyczne I stopnia na Uniwersytecie im. Adama Mickiewicza w Poznaniu % Current or most recent employment position + +%------------------------------------------------ + +\section*{Specjalizacje} + +Programowanie w języku C++ oraz Python 3.0 % Primary areas of research interest + + +%---------------------------------------------------------------------------------------- +% EDUCATION +%---------------------------------------------------------------------------------------- + +\section*{Wykształcenie} + +\years{2016-2020}\textsc Zespół Szkół Elektronicznych im. Wojska Polskiego w Bydgoszczy\\ +Technik informatyk + +\section*{Języki obce} +Język angielski na poziomie biegłym + +\section*{Zainteresowania} +\begin{itemize}[leftmargin=0.3cm] + \item Nowe technologie komputerowe i informatyczne + \item Rozwój sztucznej inteligencji + \item Matematyka +\end{itemize} + +\end{document} diff --git a/zad 11/pic.jpeg b/zad 11/pic.jpeg new file mode 100644 index 0000000..f78751e Binary files /dev/null and b/zad 11/pic.jpeg differ diff --git a/zad 11/structure.tex b/zad 11/structure.tex new file mode 100644 index 0000000..871f2c6 --- /dev/null +++ b/zad 11/structure.tex @@ -0,0 +1,94 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Compact Academic CV +% Structural Definitions +% Version 1.0 (6/7/2019) +% +% This template originates from: +% https://www.LaTeXTemplates.com +% +% Authors: +% Dario Taraborelli (http://nitens.org/taraborelli/home) +% Vel (vel@LaTeXTemplates.com) +% +% License: +% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) +% +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%---------------------------------------------------------------------------------------- +% REQUIRED PACKAGES AND MISC CONFIGURATIONS +%---------------------------------------------------------------------------------------- + +\usepackage{graphicx} % Required for including images + +\setlength{\parindent}{0pt} % Stop paragraph indentation + +%---------------------------------------------------------------------------------------- +% MARGINS +%---------------------------------------------------------------------------------------- + +\usepackage{geometry} % Required for adjusting page dimensions and margins + +\geometry{ + paper=a4paper, % Paper size, change to letterpaper for US letter size + top=3.25cm, % Top margin + bottom=4cm, % Bottom margin + left=3.5cm, % Left margin + right=3.5cm, % Right margin + headheight=0.75cm, % Header height + footskip=1cm, % Space from the bottom margin to the baseline of the footer + headsep=0.75cm, % Space from the top margin to the baseline of the header + %showframe, % Uncomment to show how the type block is set on the page +} + +%---------------------------------------------------------------------------------------- +% FONTS +%---------------------------------------------------------------------------------------- + +\usepackage[utf8]{inputenc} % Required for inputting international characters +\usepackage[T1]{fontenc} % Output font encoding for international characters + +\usepackage[semibold]{ebgaramond} % Use the EB Garamond font with a reduced bold weight + +%---------------------------------------------------------------------------------------- +% SECTION STYLING +%---------------------------------------------------------------------------------------- + +\usepackage{sectsty} % Allows changing the font options for sections in a document +\usepackage[export]{adjustbox} +\usepackage{enumitem} +\sectionfont{\fontsize{18pt}{20pt}\selectfont} % Set font options for sections +\subsectionfont{\mdseries\scshape\normalsize} % Set font options for subsections +\subsubsectionfont{\mdseries\upshape\bfseries\normalsize} % Set font options for subsubsections +\pagestyle{empty} + +%---------------------------------------------------------------------------------------- +% MARGIN YEARS +%---------------------------------------------------------------------------------------- + +\usepackage{marginnote} % Required to output text in the margin + +\newcommand{\years}[1]{\marginnote{\scriptsize #1}} % New command for adding years to the margin +\renewcommand*{\raggedleftmarginnote}{} % Left-align the years in the margin +\setlength{\marginparsep}{-10pt} % Move the margin content closer to the text +\reversemarginpar % Margin text to be output into the left margin instead of the default right margin + +%---------------------------------------------------------------------------------------- +% COLOURS +%---------------------------------------------------------------------------------------- + +\usepackage[usenames, dvipsnames]{xcolor} % Required for specifying colours by name + +%---------------------------------------------------------------------------------------- +% LINKS +%---------------------------------------------------------------------------------------- + +\usepackage[bookmarks, colorlinks, breaklinks]{hyperref} % Required for links + +% Set link colours +\hypersetup{ + linkcolor=blue, + citecolor=blue, + filecolor=black, + urlcolor=MidnightBlue +}