zajęcia 11 - latex
This commit is contained in:
parent
fd62935950
commit
293cc0bdcf
46
zajęcia 11/README.md
Normal file
46
zajęcia 11/README.md
Normal file
@ -0,0 +1,46 @@
|
||||
latexcv/modern
|
||||
=======
|
||||
|
||||
Introduction
|
||||
------------
|
||||
|
||||
A modern cv / resume written in latex.
|
||||
|
||||
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Jan Küster
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
||||
|
||||
Build instructions
|
||||
------------------
|
||||
|
||||
- You need the tex-live distribution and tex-live fonts to build.
|
||||
- Run the main.tex and build with a LaTeX environment of your choice.
|
||||
|
||||
|
||||
Credits
|
||||
-------
|
||||
|
||||
Jan Küster
|
||||
www.jankuester.com
|
BIN
zajęcia 11/domino.jpg
Normal file
BIN
zajęcia 11/domino.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 714 KiB |
468
zajęcia 11/main.tex
Normal file
468
zajęcia 11/main.tex
Normal file
@ -0,0 +1,468 @@
|
||||
%-----------------------------------------------------------------------------------------------------------------------------------------------%
|
||||
% The MIT License (MIT)
|
||||
%
|
||||
% Copyright (c) 2015 Jan Küster
|
||||
%
|
||||
% Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
% of this software and associated documentation files (the "Software"), to deal
|
||||
% in the Software without restriction, including without limitation the rights
|
||||
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
% copies of the Software, and to permit persons to whom the Software is
|
||||
% furnished to do so, subject to the following conditions:
|
||||
%
|
||||
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
% THE SOFTWARE.
|
||||
%
|
||||
%
|
||||
%-----------------------------------------------------------------------------------------------------------------------------------------------%
|
||||
|
||||
|
||||
%============================================================================%
|
||||
%
|
||||
% DOCUMENT DEFINITION
|
||||
%
|
||||
%============================================================================%
|
||||
|
||||
%we use article class because we want to fully customize the page and dont use a cv template
|
||||
\documentclass[10pt,A4]{article}
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ENCODING
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
%we use utf8 since we want to build from any machine
|
||||
\usepackage[utf8]{inputenc}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% LOGIC
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% provides \isempty test
|
||||
\usepackage{xifthen}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% FONT
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% some tex-live fonts - choose your own
|
||||
|
||||
%\usepackage[defaultsans]{droidsans}
|
||||
%\usepackage[default]{comfortaa}
|
||||
%\usepackage{cmbright}
|
||||
\usepackage[default]{raleway}
|
||||
%\usepackage{fetamont}
|
||||
%\usepackage[default]{gillius}
|
||||
%\usepackage[light,math]{iwona}
|
||||
%\usepackage[thin]{roboto}
|
||||
|
||||
% set font default
|
||||
\renewcommand*\familydefault{\sfdefault}
|
||||
\usepackage[T1]{fontenc}
|
||||
|
||||
% more font size definitions
|
||||
\usepackage{moresize}
|
||||
|
||||
\usepackage{verbatim}
|
||||
%----------------------------------------------------------------------------------------
|
||||
% PAGE LAYOUT DEFINITIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
%debug page outer frames
|
||||
%\usepackage{showframe}
|
||||
|
||||
|
||||
%define page styles using geometry
|
||||
\usepackage[a4paper]{geometry}
|
||||
|
||||
% for example, change the margins to 2 inches all round
|
||||
\geometry{top=1.75cm, bottom=-.6cm, left=1.5cm, right=1.5cm}
|
||||
|
||||
%use customized header
|
||||
\usepackage{fancyhdr}
|
||||
\pagestyle{fancy}
|
||||
|
||||
%less space between header and content
|
||||
\setlength{\headheight}{-5pt}
|
||||
|
||||
|
||||
%customize entries left, center and right
|
||||
\begin{comment}
|
||||
\lhead{}
|
||||
\chead{}
|
||||
\rhead{}
|
||||
\end{comment}
|
||||
|
||||
|
||||
%indentation is zero
|
||||
\setlength{\parindent}{0mm}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% TABLE /ARRAY DEFINITIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
%for layouting tables
|
||||
\usepackage{multicol}
|
||||
\usepackage{multirow}
|
||||
|
||||
%extended aligning of tabular cells
|
||||
\usepackage{array}
|
||||
|
||||
\newcolumntype{x}[1]{%
|
||||
>{\raggedleft\hspace{0pt}}p{#1}}%
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% GRAPHICS DEFINITIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
%for header image
|
||||
\usepackage{graphicx}
|
||||
|
||||
%for floating figures
|
||||
\usepackage{wrapfig}
|
||||
\usepackage{float}
|
||||
%\floatstyle{boxed}
|
||||
%\restylefloat{figure}
|
||||
|
||||
%for drawing graphics
|
||||
\usepackage{tikz}
|
||||
\usetikzlibrary{shapes, backgrounds,mindmap, trees}
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% Color DEFINITIONS
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\usepackage{color}
|
||||
|
||||
%accent color
|
||||
\definecolor{sectcol}{RGB}{50,130,50}
|
||||
|
||||
%accent color - ciemniejszy
|
||||
\definecolor{ciemniejszy}{RGB}{10,85,10}
|
||||
|
||||
%dark background color
|
||||
\definecolor{bgcol}{RGB}{140,140,140}
|
||||
|
||||
%light background / accent color
|
||||
\definecolor{softcol}{RGB}{225,225,225}
|
||||
|
||||
|
||||
%============================================================================%
|
||||
%
|
||||
%
|
||||
% DEFINITIONS
|
||||
%
|
||||
%
|
||||
%============================================================================%
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% HEADER
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% remove top header line
|
||||
\renewcommand{\headrulewidth}{0pt}
|
||||
|
||||
%remove botttom header line
|
||||
\renewcommand{\footrulewidth}{0pt}
|
||||
|
||||
%remove pagenum
|
||||
\renewcommand{\thepage}{}
|
||||
|
||||
%remove section num
|
||||
\renewcommand{\thesection}{}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% ARROW GRAPHICS in Tikz
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% a six pointed arrow poiting to the left
|
||||
\newcommand{\tzlarrow}{(0,0) -- (0.2,0) -- (0.3,0.2) -- (0.2,0.4) -- (0,0.4) -- (0.1,0.2) -- cycle;}
|
||||
|
||||
% include the left arrow into a tikz picture
|
||||
% param1: fill color
|
||||
%
|
||||
\newcommand{\larrow}[1]
|
||||
{\begin{tikzpicture}[scale=0.58]
|
||||
\filldraw[fill=#1!100,draw=#1!100!black] \tzlarrow
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
% a six pointed arrow poiting to the right
|
||||
\newcommand{\tzrarrow}{ (0,0.2) -- (0.1,0) -- (0.3,0) -- (0.2,0.2) -- (0.3,0.4) -- (0.1,0.4) -- cycle;}
|
||||
|
||||
% include the right arrow into a tikz picture
|
||||
% param1: fill color
|
||||
%
|
||||
\newcommand{\rarrow}
|
||||
{\begin{tikzpicture}[scale=0.7]
|
||||
\filldraw[fill=sectcol!100,draw=sectcol!100!black] \tzrarrow
|
||||
\end{tikzpicture}
|
||||
}
|
||||
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% custom sections
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% create a coloured box with arrow and title as cv section headline
|
||||
% param 1: section title
|
||||
%
|
||||
\newcommand{\cvsection}[1]
|
||||
{
|
||||
\colorbox{sectcol}{\mystrut \makebox[1\linewidth][l]{
|
||||
\larrow{bgcol} \hspace{-8pt} \larrow{bgcol} \hspace{-8pt} \larrow{bgcol} \textcolor{white}{\textbf{#1}}\hspace{4pt}
|
||||
}}\\
|
||||
}
|
||||
|
||||
%create a coloured arrow with title as cv meta section section
|
||||
% param 1: meta section title
|
||||
%
|
||||
\newcommand{\metasection}[2]
|
||||
{
|
||||
\begin{tabular*}{1\textwidth}{p{5cm} p{7cm}} %2.4 11
|
||||
\larrow{bgcol} \normalsize{\textcolor{ciemniejszy}{#1}}\\[12pt]
|
||||
\end{tabular*}
|
||||
}
|
||||
|
||||
%metasection bez strzalki bez odstepu po
|
||||
%
|
||||
\newcommand{\niejestemdumny}[2]
|
||||
{
|
||||
\begin{tabular*}{1\textwidth}{p{5cm} p{7cm}} %2.4 11
|
||||
\normalsize{\textcolor{ciemniejszy}{#1}}\\[0pt]
|
||||
\end{tabular*}
|
||||
}
|
||||
|
||||
%metasection ze strzalka bez odstepu po
|
||||
%
|
||||
\newcommand{\jeszczemniejdumny}[2]
|
||||
{
|
||||
\begin{tabular*}{1\textwidth}{p{5cm} p{7cm}} %2.4 11
|
||||
\larrow{bgcol} \normalsize{\textcolor{ciemniejszy}{#1}}\\[0pt]
|
||||
\end{tabular*}
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CV EVENT
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
% creates a stretched box as cv entry headline followed by two paragraphs about
|
||||
% the work you did
|
||||
% param 1: event time i.e. 2014 or 2011-2014 etc.
|
||||
% param 2: event name (what did you do?)
|
||||
% param 3: institution (where did you work / study)
|
||||
% param 4: what was your position
|
||||
% param 5: some words about your contributions
|
||||
%
|
||||
%dwie strzalki
|
||||
\newcommand{\cveventdwa}[5]
|
||||
{
|
||||
\vspace{8pt}
|
||||
\begin{tabular*}{1\textwidth}{p{2.3cm} p{6.5cm} x{8.2cm}} %2.3 8 6.7
|
||||
{#1}& \textbf{#2} & \vspace{2.5pt}\textcolor{ciemniejszy}{#3}
|
||||
|
||||
\end{tabular*}
|
||||
\vspace{-12pt}
|
||||
{\hrule}
|
||||
\vspace{12pt}
|
||||
\begin{tabular*}{1\textwidth}{p{2.3cm} p{14.4cm}}
|
||||
& \larrow{bgcol} #4\\[10pt]
|
||||
& \larrow{bgcol} #5\\[6pt]
|
||||
\end{tabular*}
|
||||
\vspace{20pt}
|
||||
}
|
||||
|
||||
%bez strzalek
|
||||
\newcommand{\cveventzero}[5]
|
||||
{
|
||||
\vspace{8pt}
|
||||
\begin{tabular*}{1\textwidth}{p{2.3cm} p{8cm} x{6.7cm}}
|
||||
{#1}& \textbf{#2} & \vspace{2.5pt}\textcolor{ciemniejszy}{#3}
|
||||
|
||||
\end{tabular*}
|
||||
\vspace{-12pt}
|
||||
{\hrule}
|
||||
\vspace{6pt}
|
||||
\vspace{20pt}
|
||||
}
|
||||
%tylko strzalki
|
||||
\newcommand{\zainteresowania}[5]
|
||||
{
|
||||
\vspace{8pt}
|
||||
\vspace{-12pt}
|
||||
\vspace{12pt}
|
||||
\begin{tabular*}{1\textwidth}{p{2.3cm} p{14.4cm}}
|
||||
& \larrow{bgcol} #1\\[10pt]
|
||||
& \larrow{bgcol} #2\\[10pt]
|
||||
& \larrow{bgcol} #3\\[10pt]
|
||||
\end{tabular*}
|
||||
\vspace{12pt}
|
||||
}
|
||||
% creates a stretched box as
|
||||
\newcommand{\cveventmeta}[2]
|
||||
{
|
||||
\mbox{\mystrut \hspace{87pt}\textit{#1}}\\
|
||||
#2
|
||||
}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CUSTOM STRUT FOR EMPTY BOXES
|
||||
%----------------------------------------- -----------------------------------------------
|
||||
\newcommand{\mystrut}{\rule[-.3\baselineskip]{0pt}{\baselineskip}}
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% CUSTOM LOREM IPSUM
|
||||
%----------------------------------------------------------------------------------------
|
||||
\newcommand{\lorem}
|
||||
{Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus.}
|
||||
|
||||
|
||||
|
||||
%============================================================================%
|
||||
%
|
||||
%
|
||||
%
|
||||
% DOCUMENT CONTENT
|
||||
%
|
||||
%
|
||||
%
|
||||
%============================================================================%
|
||||
\begin{document}
|
||||
|
||||
|
||||
%use our custom fancy header definitions
|
||||
\pagestyle{fancy}
|
||||
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% TITLE HEADLINE
|
||||
%----------------------------------------------------------------------------------------
|
||||
\vspace{-20.55pt}
|
||||
|
||||
% use this for multiple words like working titles etc.
|
||||
%\hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\hspace{46pt}\HUGE{\textcolor{white}{\textsc{Jan Küster}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \parbox[b]{5cm}{ \large{ \textcolor{white}{{IT Consultant}}}\\
|
||||
% \large{ \textcolor{white}{{Resume}}}}
|
||||
%}}
|
||||
|
||||
% use this for single words, e.g. CV or RESUME etc.
|
||||
\hspace{-0.25\linewidth}\colorbox{bgcol}{\makebox[1.5\linewidth][c]{\HUGE{\textcolor{white}{\textsc{Dominik Jagosz}} } \textcolor{sectcol}{\rule[-1mm]{1mm}{0.9cm}} \HUGE{\textcolor{white}{\textsc{CV}} } }}
|
||||
|
||||
|
||||
%----------------------------------------------------------------------------------------
|
||||
% HEADER IMAGE
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\begin{figure}[H]
|
||||
\begin{flushright}
|
||||
\includegraphics[width=0.2\linewidth]{domino.jpg} %trimming relative to image size!
|
||||
\end{flushright}
|
||||
\end{figure}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% QR CODE (optional)
|
||||
%----------------------------------------------------------------------------------------
|
||||
%\vspace{-136pt}
|
||||
%\hspace{0.75\linewidth}
|
||||
%\includegraphics[width=103pt]{qrcode}
|
||||
%\normalsize
|
||||
%\vspace{88pt}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% META SECTION
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\vspace{-114pt} %-114
|
||||
|
||||
\metasection{Telefon:}{\hfill +48 730 053 620}
|
||||
\metasection{Email:}{\hfill djagosz01@gmail.com}
|
||||
\metasection{Data urodzenia:}{\hfill 15 października 2001}
|
||||
\jeszczemniejdumny{Miejce zamieszkania:}{\hfill Kasprowicza 14b/21}
|
||||
\niejestemdumny{}{\hfill 10-222 Olsztyn}
|
||||
|
||||
\vspace{10pt} %6
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% SUMMARAY (optional)
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
%\cvsection{Summary}\\
|
||||
%I am a digital media graduate (M.Sc.) with project experience in educational research as well as in the private sector. During my studies I focused on e-assessment software and moved over to b2b software for IBM Notes Domino.
|
||||
|
||||
%Currently I develop and evaluate the next generation learning management system with Meteor based on an extensive nursing curriculum for healthcare education. I also love fitness, martial arts, videogames, news and Sci-Fi series.\\[-2pt]
|
||||
|
||||
%============================================================================%
|
||||
%
|
||||
% CV SECTIONS AND EVENTS (MAIN CONTENT)
|
||||
%
|
||||
%============================================================================%
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% EXPERIENCE
|
||||
%----------------------------------------------------------------------------------------
|
||||
%\cvsection{Experience}
|
||||
|
||||
%Gotowy.
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% EDUCATION SECTION
|
||||
%--------------------------------------------------------------------------------------
|
||||
\cvsection{Wykształcenie}
|
||||
|
||||
\cveventzero{10.2020 - \newline obecnie}{Informatyka \newline studia inżynierskie}{\hfill Uniwersytet im. Adama Mickiewicza \newline w Poznaniu}
|
||||
|
||||
%\textcolor{softcol}{\hrule}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% Języki obce
|
||||
%----------------------------------------------------------------------------------------
|
||||
\cvsection{Jezyki obce}
|
||||
|
||||
\cveventdwa{06.2020}{Angielski}{}{znajomość w stopniu zaawansowanym C1}{certyfikat Pearson Edexcel Level 2 Certificate in ESOL International}
|
||||
|
||||
%\textcolor{softcol}{\hrule}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% Umiejetnoscui
|
||||
%----------------------------------------------------------------------------------------
|
||||
\cvsection{Kursy}
|
||||
|
||||
\cveventdwa{03.2020}{Kurs barmański}{Centrum Edukacji Warmińsko-Mazurskiego Zakładu Doskonalenia Zawodowego w Olsztynie}{Kultura obsługi klienta i etyka zawodowa w gastronomii}{Przygotowanie i podawanie napojów alkoholowych i bezalkoholowych}
|
||||
|
||||
%\textcolor{softcol}{\hrule}
|
||||
|
||||
%---------------------------------------------------------------------------------------
|
||||
% SUMMARAY (optional)
|
||||
%----------------------------------------------------------------------------------------
|
||||
|
||||
\cvsection{Zainteresowania}
|
||||
|
||||
\zainteresowania{Piwowarstwo i cydrownictwo domowe}{Szachy}{Savoir-vivre i męska elegancja}
|
||||
|
||||
%\textcolor{softcol}{\hrule}
|
||||
|
||||
%-------------------------------------------------------------------------------------------------
|
||||
% ARTIFICIAL FOOTER (fancy footer cannot exceed linewidth)
|
||||
%--------------------------------------------------------------------------------------------------
|
||||
\hfill\newline
|
||||
\mbox{}
|
||||
\vfill
|
||||
Wyrażam zgodę na przetwarzanie moich danych osobowych dla potrzeb niezbędnych do realizacji procesu rekrutacji.
|
||||
\vspace{24pt}
|
||||
|
||||
|
||||
|
||||
|
||||
%============================================================================%
|
||||
%
|
||||
% DOCUMENT END
|
||||
%
|
||||
%============================================================================%
|
||||
\end{document}
|
Loading…
Reference in New Issue
Block a user