zad 11
This commit is contained in:
parent
8523be5055
commit
fce0f3193e
BIN
ZAD 11/Latex_CV_Angelika_Iskra.pdf
Normal file
BIN
ZAD 11/Latex_CV_Angelika_Iskra.pdf
Normal file
Binary file not shown.
433
ZAD 11/altacv.cls
Normal file
433
ZAD 11/altacv.cls
Normal file
@ -0,0 +1,433 @@
|
||||
%%%%%%%%%%%%%%%%%
|
||||
% This is altacv.cls (v1.3.2, 17 May 2020) written by
|
||||
% LianTze Lim (liantze@gmail.com).
|
||||
% This fork/modified version has been made by Nicolás Omar González Passerino (nicolas.passerino@gmail.com, 15 Oct 2020)
|
||||
%
|
||||
%% It may be distributed and/or modified under the
|
||||
%% conditions of the LaTeX Project Public License, either version 1.3
|
||||
%% of this license or (at your option) any later version.
|
||||
%% The latest version of this license is in
|
||||
%% http://www.latex-project.org/lppl.txt
|
||||
%% and version 1.3 or later is part of all distributions of LaTeX
|
||||
%% version 2003/12/01 or later.
|
||||
%%
|
||||
%%
|
||||
% Contributions:
|
||||
% - https://github.com/liantze/AltaCV Original template
|
||||
% - https://github.com/akreuzer Added ragged2e option (5 Nov 2018)
|
||||
% - https://github.com/stefanogermano Fixed bad boxes and undefined font shape (July 2018)
|
||||
% - https://github.com/foohyfooh Fixed blank spaces in \cvevent and bad link in README.md (June 2018)
|
||||
|
||||
%%%%%%%%%%%%%%%%
|
||||
\NeedsTeXFormat{LaTeX2e}[1995/12/01]
|
||||
\ProvidesClass{altacv}[2020/05/17 AltaCV v1.3.2, yet another alternative class for a resume/curriculum vitae.]
|
||||
|
||||
%% v1.1: Optionally load academicons
|
||||
\newif\if@academicons
|
||||
\DeclareOption{academicons}{\@academiconstrue}
|
||||
%% v1.1.3: Choice of round/square photo
|
||||
\newif\if@normalphoto
|
||||
\DeclareOption{normalphoto}{\@normalphototrue}
|
||||
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{extarticle}}
|
||||
\newif\if@raggedtwoe
|
||||
\DeclareOption{ragged2e}{\@raggedtwoetrue}
|
||||
%% v1.3: load hyperref for clickable hyperlinks
|
||||
\newif\if@withhyper
|
||||
\DeclareOption{withhyper}{\@withhypertrue}
|
||||
\ProcessOptions\relax
|
||||
|
||||
\LoadClass{article}
|
||||
%% v1.3.2 Hopefully this helps make the PDF
|
||||
%% file more 'friendly' with copy-paste etc
|
||||
\RequirePackage[a-1b]{pdfx}
|
||||
\RequirePackage[margin=2cm]{geometry}
|
||||
\RequirePackage[fixed]{fontawesome5}
|
||||
\RequirePackage{ifxetex,ifluatex}
|
||||
\RequirePackage{scrlfile}
|
||||
\RequirePackage{xparse}
|
||||
\RequirePackage{markdown}
|
||||
|
||||
%% v1.1.5: added for convenience
|
||||
\newif\ifxetexorluatex
|
||||
\ifxetex
|
||||
\xetexorluatextrue
|
||||
\else
|
||||
\ifluatex
|
||||
\xetexorluatextrue
|
||||
\else
|
||||
\xetexorluatexfalse
|
||||
\fi
|
||||
\fi
|
||||
|
||||
\ifxetexorluatex
|
||||
\RequirePackage{fontspec}
|
||||
\else
|
||||
%% v1.3.2 attempts to make ligatures
|
||||
%% copy-paste as normal characters
|
||||
\RequirePackage{cmap}
|
||||
\RequirePackage[utf8]{inputenc}
|
||||
\RequirePackage[T1]{fontenc}
|
||||
\input{glyphtounicode}
|
||||
\pdfglyphtounicode{f_f}{FB00}
|
||||
\pdfglyphtounicode{f_f_i}{FB03}
|
||||
\pdfglyphtounicode{f_f_l}{FB04}
|
||||
\pdfglyphtounicode{f_i}{FB01}
|
||||
\pdfgentounicode=1
|
||||
\fi
|
||||
|
||||
%% v1.1: Optionally load academicons
|
||||
%% v1.1.5: Handle different versions of academicons
|
||||
\if@academicons
|
||||
\ifxetexorluatex
|
||||
\RequirePackage{fontspec}
|
||||
%% academicons in TL2018 doesn't require
|
||||
%% Academicons to be installed in OS fonts
|
||||
%% so can be loaded directly
|
||||
\@ifl@t@r\fmtversion{2018/04/01}{%
|
||||
\RequirePackage{academicons}
|
||||
}{%
|
||||
% TL2017
|
||||
\@ifl@t@r\fmtversion{2017/04/01}{%
|
||||
\@ifpackagelater{academicons}{2018/03/01}{%
|
||||
\RequirePackage{academicons}
|
||||
}{%
|
||||
\let\ori@newfontfamily\newfontfamily%
|
||||
\renewcommand{\newfontfamily}[2]{}
|
||||
\RequirePackage{academicons}
|
||||
\let\newfontfamily\ori@newfontfamily
|
||||
\newfontfamily{\AI}{academicons.ttf}
|
||||
}
|
||||
}{% TL2016 requires the package to be loaded before
|
||||
% the version can be checked. Only added because
|
||||
% Overleaf v1 still runs TL2016; will be removed
|
||||
% when v1 is completely retired.
|
||||
\let\ori@newfontfamily\newfontfamily%
|
||||
\renewcommand{\newfontfamily}[2]{}
|
||||
\RequirePackage{academicons}
|
||||
\let\newfontfamily\ori@newfontfamily
|
||||
\newfontfamily{\AI}{academicons.ttf}
|
||||
}
|
||||
}
|
||||
\else
|
||||
\ClassError{AltaCV}{academicons unsupported by latex or pdflatex. Please compile with xelatex or lualatex}{Please compile with xelatex or lualatex to use the academicons option}
|
||||
\fi
|
||||
\fi
|
||||
|
||||
\if@raggedtwoe
|
||||
\RequirePackage[newcommands]{ragged2e}
|
||||
\fi
|
||||
|
||||
\if@withhyper
|
||||
\AtBeginDocument{%
|
||||
\RequirePackage{hyperref}
|
||||
\hypersetup{hidelinks}
|
||||
\urlstyle{same}
|
||||
}
|
||||
\fi
|
||||
|
||||
\RequirePackage{xcolor}
|
||||
|
||||
\colorlet{accent}{blue!70!black}
|
||||
\colorlet{emphasis}{black}
|
||||
\colorlet{heading}{black}
|
||||
\colorlet{headingrule}{black}
|
||||
\colorlet{subheading}{emphasis}
|
||||
\colorlet{body}{black!80!white}
|
||||
\colorlet{name}{heading}
|
||||
\colorlet{tagline}{accent}
|
||||
\newcommand{\itemmarker}{{\small\textbullet}}
|
||||
\newcommand{\ratingmarker}{\faCircle}
|
||||
|
||||
\RequirePackage{tikz}
|
||||
\usetikzlibrary{arrows}
|
||||
\RequirePackage[skins]{tcolorbox}
|
||||
\RequirePackage[inline]{enumitem}
|
||||
\setlist{leftmargin=*,labelsep=0.5em,nosep,itemsep=0.25\baselineskip,after=\vspace{0.25\baselineskip}}
|
||||
\setlist[itemize]{label=\itemmarker}
|
||||
\RequirePackage{graphicx}
|
||||
\RequirePackage{etoolbox}
|
||||
\RequirePackage{dashrule}
|
||||
\RequirePackage{multirow,tabularx}
|
||||
\RequirePackage{changepage}
|
||||
% \RequirePackage{marginfix}
|
||||
|
||||
\setlength{\parindent}{0pt}
|
||||
\newcommand{\divider}{\textcolor{body!30}{\hdashrule{\linewidth}{0.6pt}{0.5ex}}\medskip}
|
||||
|
||||
\newenvironment{fullwidth}{%
|
||||
\begin{adjustwidth}{}{\dimexpr-\marginparwidth-\marginparsep\relax}}
|
||||
{\end{adjustwidth}}
|
||||
|
||||
%% v1.3.1 \detokenize will break UTF-8 in pdflatex
|
||||
%% Using alternative from https://tex.stackexchange.com/a/530911/226
|
||||
\newcommand{\utffriendlydetokenize}[1]{%
|
||||
\scantokens{%
|
||||
\catcode`\_=12%
|
||||
% \catcode`\^=12%
|
||||
% \catcode`\{=12%
|
||||
% \catcode`\}=12%
|
||||
\catcode`\&=12%
|
||||
\catcode`\$=12%
|
||||
\catcode`\#=12%
|
||||
\catcode`\~=12%
|
||||
% \catcode`\\=12%
|
||||
{#1}%
|
||||
}%
|
||||
}
|
||||
%% v1.3: Incorporating hyperlinks
|
||||
%% v1.3.1: using \unfriendlydetokenize to avoid
|
||||
%% breaking unicode
|
||||
\ExplSyntaxOn
|
||||
\NewDocumentCommand{\printinfo}{m m o}{%
|
||||
\IfNoValueTF{#3}{%
|
||||
\mbox{\textcolor{accent}{\normalfont #1}~\utffriendlydetokenize{#2}\hspace{2em}}%
|
||||
}{%
|
||||
\if@withhyper%
|
||||
\mbox{\textcolor{accent}{\normalfont #1}~
|
||||
\href{#3}{\utffriendlydetokenize{#2}}\hspace{2em}}
|
||||
\else%
|
||||
\ClassWarning{Please specify [withhyper] option to enable hyperlinks. Printing out full hyperlink prefix #1 for now.}%
|
||||
\mbox{\textcolor{accent}{\normalfont #1}~{\utffriendlydetokenize{#3#2}}\hspace{2em}}%
|
||||
\fi%
|
||||
}%
|
||||
}%
|
||||
|
||||
%% v1.3: Exploring convenient creation of fields
|
||||
\NewDocumentCommand{\NewInfoField}{m m o}{%
|
||||
\IfNoValueF{#3}{\csdef{#1 hyperprefix}{#3}}%
|
||||
\csdef{#1 symbol}{#2}%
|
||||
\csdef{#1}##1{%
|
||||
\if@withhyper
|
||||
\IfNoValueTF {#3}
|
||||
{\printinfo{\csuse{#1 symbol}}{##1}}%
|
||||
{\printinfo{\csuse{#1 symbol}}{##1}[\csuse{#1 hyperprefix}##1]}%
|
||||
\else
|
||||
\printinfo{\csuse{#1 symbol}}{##1}%
|
||||
\fi%
|
||||
}
|
||||
}
|
||||
\ExplSyntaxOff
|
||||
|
||||
\newcommand{\name}[1]{\def\@name{#1}}
|
||||
\newcommand{\tagline}[1]{\def\@tagline{#1}}
|
||||
\newcommand{\personalinfo}[1]{\def\@personalinfo{#1}}
|
||||
\NewInfoField{email}{\faAt}[mailto:]
|
||||
\NewInfoField{mailaddress}{\faEnvelope}
|
||||
\NewInfoField{phone}{\faPhone}
|
||||
\NewInfoField{homepage}{\faGlobe}[https://]
|
||||
\NewInfoField{twitter}{\faTwitter}[https://twitter.com/]
|
||||
\NewInfoField{linkedin}{\faLinkedin}[https://linkedin.com/in/]
|
||||
\NewInfoField{github}{\faGithub}[https://github.com/]
|
||||
\NewInfoField{orcid}{\aiOrcid}[https://orcid.com/]
|
||||
\NewInfoField{location}{\faMapMarker}
|
||||
% Fork: New optional options added for dev and medium accounts
|
||||
\NewInfoField{dev}{\faDev}[https://dev.to/]
|
||||
\NewInfoField{medium}{\faMedium}[https://medium.com/@]
|
||||
|
||||
% v1.2: Support for multiple photos
|
||||
\newlength{\altacv@photos@width}
|
||||
\newlength{\altacv@photo@diam@left}
|
||||
\newlength{\altacv@photo@diam@right}
|
||||
\def\altacv@left@photos{}
|
||||
\def\altacv@right@photos{}
|
||||
|
||||
\newcommand{\@makeaphoto}[2]{%
|
||||
\begin{minipage}{#1}%
|
||||
\if@normalphoto
|
||||
\includegraphics[width=\linewidth]{#2}
|
||||
\else
|
||||
% Fork: The photo image has modified to include a border around it, which color is aligned to document's theme
|
||||
\tikz\filldraw[color=headingrule, fill overzoom image={#2}, ultra thick](-1,0) circle[radius=0.5\linewidth];
|
||||
\fi%
|
||||
\end{minipage}%
|
||||
}
|
||||
|
||||
% Fork: Horizontal space changed from 1ex to 6,5ex to align photo container width to smaller column width (25%)
|
||||
\newcommand{\altacv@add@photo@left}[1]{%
|
||||
\appto{\altacv@left@photos}{%
|
||||
\@makeaphoto{\altacv@photo@diam@left}{#1}\hspace{6,5ex}%
|
||||
}%
|
||||
\addtolength{\altacv@photos@width}{\altacv@photo@diam@left}%
|
||||
\addtolength{\altacv@photos@width}{1ex}%
|
||||
}
|
||||
\newcommand{\altacv@add@photo@right}[1]{%
|
||||
\appto{\altacv@right@photos}{%
|
||||
\@makeaphoto{\altacv@photo@diam@right}{#1}\hspace{6,5ex}%
|
||||
}%
|
||||
\addtolength{\altacv@photos@width}{\altacv@photo@diam@right}%
|
||||
\addtolength{\altacv@photos@width}{1ex}%
|
||||
}
|
||||
\newcommand{\photoL}[2]{%
|
||||
\setlength{\altacv@photo@diam@left}{#1}%
|
||||
\forcsvlist{\altacv@add@photo@left}{#2}%
|
||||
}
|
||||
\newcommand{\photoR}[2]{%
|
||||
\setlength{\altacv@photo@diam@right}{#1}%
|
||||
\forcsvlist{\altacv@add@photo@right}{#2}%
|
||||
}
|
||||
\let\photo\photoR
|
||||
|
||||
\newcommand{\namefont}{\Huge\bfseries}
|
||||
\newcommand{\taglinefont}{\large\bfseries}
|
||||
\newcommand{\personalinfofont}{\footnotesize\bfseries}
|
||||
\newcommand{\cvsectionfont}{\LARGE\bfseries}
|
||||
\newcommand{\cvsubsectionfont}{\large\bfseries}
|
||||
|
||||
\newcommand{\makecvheader}{%
|
||||
\begingroup
|
||||
\altacv@left@photos\hfill%
|
||||
\begin{minipage}{\dimexpr\linewidth-\altacv@photos@width}%
|
||||
\raggedright%
|
||||
{\namefont\color{name}\MakeUppercase{\@name}\par}
|
||||
\medskip
|
||||
{\taglinefont\color{tagline}\@tagline\par}
|
||||
\medskip
|
||||
{\personalinfofont\@personalinfo\par}
|
||||
\end{minipage}\hfill%
|
||||
\altacv@right@photos\par%
|
||||
\endgroup\medskip
|
||||
}
|
||||
|
||||
\renewenvironment{quote}{\color{accent}\itshape\large}{\par}
|
||||
|
||||
% Fork: Two bigskip tags added for better section separation
|
||||
\newcommand{\cvsection}[2][]{%
|
||||
\bigskip
|
||||
\bigskip
|
||||
\ifstrequal{#1}{}{}{\marginpar{\vspace*{\dimexpr1pt-\baselineskip}\raggedright\input{#1}}}%
|
||||
{\color{heading}\cvsectionfont\MakeUppercase{#2}}\\[-1ex]%
|
||||
{\color{headingrule}\rule{\linewidth}{2pt}\par}\medskip
|
||||
}
|
||||
|
||||
\newcommand{\cvsubsection}[1]{%
|
||||
\smallskip%
|
||||
{\color{subheading}\cvsubsectionfont{#1}\par}\medskip
|
||||
}
|
||||
|
||||
% v1.1.4: fixes inconsistent font size
|
||||
% Fork: structure modified to include change title, company name, start/end dates and work location (only a string)
|
||||
\newcommand{\cvevent}[4]{%
|
||||
{\large\color{emphasis}#1}
|
||||
\ifstrequal{#2}{}{}{\large{\color{accent}#2}}
|
||||
\par\medskip\normalsize
|
||||
\ifstrequal{#3}{}{}{{\small\makebox[0.5\linewidth][l]{\color{accent}\faCalendar\color{emphasis}~#3}}}
|
||||
\ifstrequal{#4}{}{}{{\small\makebox[0.5\linewidth][l]{\color{accent}\faMapMarker\color{emphasis}~#4}}}\par
|
||||
\medskip\normalsize
|
||||
}
|
||||
|
||||
\newcommand{\cvachievement}[3]{%
|
||||
\begin{tabularx}{\linewidth}{@{}p{2em} @{\hspace{1ex}} >{\raggedright\arraybackslash}X@{}}
|
||||
\multirow{2}{*}{\Large\color{accent}#1} & \bfseries\textcolor{emphasis}{#2}\\
|
||||
& #3
|
||||
\end{tabularx}%
|
||||
\smallskip
|
||||
}
|
||||
|
||||
% Fork: Tags separation partially achieved, missing vertical spaces consistency for now
|
||||
\newcommand{\cvtag}[1]{%
|
||||
\tikz[baseline]\node[anchor=base,draw=body,rounded corners,inner xsep=1ex,inner ysep=0.75ex,text height=1.5ex,text depth=.25ex]{#1};
|
||||
\vspace{0.25ex}
|
||||
}
|
||||
|
||||
\newcommand{\cvskill}[2]{%
|
||||
\textcolor{emphasis}{\textbf{#1}}
|
||||
\foreach \x in {1,...,5}{
|
||||
\SPACE{\IFNUMGREATER{\X}{#2}{\color{body}}{\color{accent}}\ratingmarker}
|
||||
}\par
|
||||
}
|
||||
|
||||
% Fork: Tag added for languages rating, avoiding star/button/progress bar previous ideas, I made a simpler and more accurate representation using a single string, which will be colored to be oustanding
|
||||
\newcommand{\cvlang}[2]{%
|
||||
\textcolor{emphasis}{\textbf{#1: }}
|
||||
\textcolor{accent}{\textbf{#2}}
|
||||
}
|
||||
|
||||
% Adapted from @Jake's answer at http://tex.stackexchange.com/a/82729/226
|
||||
\newcommand{\wheelchart}[4][0]{%
|
||||
\begingroup\centering
|
||||
\def\innerradius{#3}%
|
||||
\def\outerradius{#2}%
|
||||
% Calculate total
|
||||
\pgfmathsetmacro{\totalnum}{0}%
|
||||
\foreach \value/\colour/\name in {#4} {%
|
||||
\pgfmathparse{\value+\totalnum}%
|
||||
\global\let\totalnum=\pgfmathresult%
|
||||
}%
|
||||
\begin{tikzpicture}
|
||||
|
||||
% Calculate the thickness and the middle line of the wheel
|
||||
\pgfmathsetmacro{\wheelwidth}{\outerradius-\innerradius}
|
||||
\pgfmathsetmacro{\midradius}{(\outerradius+\innerradius)/2}
|
||||
\pgfmathsetmacro{\totalrot}{-90 + #1}
|
||||
|
||||
% Rotate so we start from the top
|
||||
\begin{scope}[rotate=\totalrot]
|
||||
|
||||
% Loop through each value set. \cumnum keeps track of where we are in the wheel
|
||||
\pgfmathsetmacro{\cumnum}{0}
|
||||
\foreach \value/\width/\colour/\name in {#4} {
|
||||
\pgfmathsetmacro{\newcumnum}{\cumnum + \value/\totalnum*360}
|
||||
|
||||
% Calculate the percent value
|
||||
\pgfmathsetmacro{\percentage}{\value/\totalnum*100}
|
||||
% Calculate the mid angle of the colour segments to place the labels
|
||||
\pgfmathsetmacro{\midangle}{-(\cumnum+\newcumnum)/2}
|
||||
|
||||
% This is necessary for the labels to align nicely
|
||||
\pgfmathparse{
|
||||
(-\midangle>180?"west":"east")
|
||||
} \edef\textanchor{\pgfmathresult}
|
||||
\pgfmathparse{
|
||||
(-\midangle>180?"flush left":"flush right")
|
||||
} \edef\textalign{\pgfmathresult}
|
||||
\pgfmathsetmacro\labelshiftdir{1-2*(-\midangle<180)}
|
||||
|
||||
% Draw the color segments. Somehow, the \midrow units got lost, so we add 'pt' at the end. Not nice...
|
||||
\filldraw[draw=white,fill=\colour] (-\cumnum:\outerradius) arc (-\cumnum:-(\newcumnum):\outerradius) --
|
||||
(-\newcumnum:\innerradius) arc (-\newcumnum:-(\cumnum):\innerradius) -- cycle;
|
||||
|
||||
% Draw the data labels
|
||||
\draw [*-,thin,emphasis] node [append after command={(\midangle:\midradius pt) -- (\midangle:\outerradius + 1ex) -- (\tikzlastnode)}] at (\midangle:\outerradius + 1ex) [xshift=\labelshiftdir*0.5cm,inner sep=1ex, outer sep=0pt, text width=\width,anchor=\textanchor,align=\textalign,font=\small,text=body]{\name};
|
||||
% Set the old cumulated angle to the new value
|
||||
\global\let\cumnum=\newcumnum
|
||||
}
|
||||
\end{scope}
|
||||
% \draw[gray] (0,0) circle (\outerradius) circle (\innerradius);
|
||||
\end{tikzpicture}\par
|
||||
\endgroup
|
||||
}
|
||||
|
||||
% Fork: CV reference tag has been modified to accept only linkedin accounts instead mail. It can be modified easily in case you need to display other type of contact
|
||||
\newcommand{\cvref}[1]{%
|
||||
\textcolor{emphasis}{\textbf{#1}}\par
|
||||
}
|
||||
|
||||
\newcommand{\cvrepo}[2]{
|
||||
\textcolor{accent}{\href{#2}{#1}}
|
||||
}
|
||||
|
||||
\newenvironment{cvcolumn}[1]{\begin{minipage}[t]{#1}\raggedright}{\end{minipage}}
|
||||
|
||||
\RequirePackage[backend=biber,style=authoryear,sorting=ydnt]{biblatex}
|
||||
%% For removing numbering entirely when using a numeric style
|
||||
% \setlength{\bibhang}{1em}
|
||||
% \DeclareFieldFormat{labelnumberwidth}{\makebox[\bibhang][l]{\itemmarker}}
|
||||
% \setlength{\biblabelsep}{0pt}
|
||||
\defbibheading{pubtype}{\cvsubsection{#1}}
|
||||
\renewcommand{\bibsetup}{\vspace*{-\baselineskip}}
|
||||
\AtEveryBibitem{\makebox[\bibhang][l]{\itemmarker}}
|
||||
\setlength{\bibitemsep}{0.25\baselineskip}
|
||||
|
||||
% v1.1.2: make it easier to add a sidebar aligned with top of next page
|
||||
\RequirePackage{afterpage}
|
||||
\newcommand{\addsidebar}[2][]{\marginpar{%
|
||||
\ifstrequal{#1}{}{}{\vspace*{#1}}%
|
||||
\input{#2}}%
|
||||
}
|
||||
\newcommand{\addnextpagesidebar}[2][]{\afterpage{\addsidebar[#1]{#2}}}
|
||||
|
||||
\AtBeginDocument{%
|
||||
\pagestyle{empty}
|
||||
\color{body}
|
||||
\raggedright
|
||||
}
|
274
ZAD 11/main.tex
Normal file
274
ZAD 11/main.tex
Normal file
@ -0,0 +1,274 @@
|
||||
%%%%%%%%%%%%%%%%%
|
||||
% This is an sample CV template created using altacv.cls
|
||||
% (v1.3, 10 May 2020) written by LianTze Lim (liantze@gmail.com). Now compiles with pdfLaTeX, XeLaTeX and LuaLaTeX.
|
||||
% This fork/modified version has been made by Nicolás Omar González Passerino (nicolas.passerino@gmail.com, 15 Oct 2020)
|
||||
%
|
||||
%% It may be distributed and/or modified under the
|
||||
%% conditions of the LaTeX Project Public License, either version 1.3
|
||||
%% of this license or (at your option) any later version.
|
||||
%% The latest version of this license is in
|
||||
%% http://www.latex-project.org/lppl.txt
|
||||
%% and version 1.3 or later is part of all distributions of LaTeX
|
||||
%% version 2003/12/01 or later.
|
||||
%%%%%%%%%%%%%%%%
|
||||
|
||||
%% If you need to pass whatever options to xcolor
|
||||
\PassOptionsToPackage{dvipsnames}{xcolor}
|
||||
|
||||
%% If you are using \orcid or academicons
|
||||
%% icons, make sure you have the academicons
|
||||
%% option here, and compile with XeLaTeX
|
||||
%% or LuaLaTeX.
|
||||
% \documentclass[10pt,a4paper,academicons]{altacv}
|
||||
|
||||
%% Use the "normalphoto" option if you want a normal photo instead of cropped to a circle
|
||||
% \documentclass[10pt,a4paper,normalphoto]{altacv}
|
||||
|
||||
\documentclass[10pt,a4paper,ragged2e,withhyper]{altacv}
|
||||
|
||||
%% AltaCV uses the fontawesome5 and academicons fonts
|
||||
%% and packages.
|
||||
%% See http://texdoc.net/pkg/fontawesome5 and http://texdoc.net/pkg/academicons for full list of symbols. You MUST compile with XeLaTeX or LuaLaTeX if you want to use academicons.
|
||||
|
||||
% Change the page layout if you need to
|
||||
\geometry{left=1.2cm,right=1.2cm,top=1cm,bottom=1cm,columnsep=0.75cm}
|
||||
|
||||
% The paracol package lets you typeset columns of text in parallel
|
||||
\usepackage{paracol}
|
||||
|
||||
% Change the font if you want to, depending on whether
|
||||
% you're using pdflatex or xelatex/lualatex
|
||||
\ifxetexorluatex
|
||||
% If using xelatex or lualatex:
|
||||
\setmainfont{Roboto Slab}
|
||||
\setsansfont{Lato}
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
\else
|
||||
% If using pdflatex:
|
||||
\usepackage[rm]{roboto}
|
||||
\usepackage[defaultsans]{lato}
|
||||
% \usepackage{sourcesanspro}
|
||||
\renewcommand{\familydefault}{\sfdefault}
|
||||
\fi
|
||||
|
||||
% ----- LIGHT MODE -----
|
||||
\definecolor{SlateGrey}{HTML}{2E2E2E}
|
||||
\definecolor{LightGrey}{HTML}{666666}
|
||||
\definecolor{PrimaryColor}{HTML}{001F5A}
|
||||
\definecolor{SecondaryColor}{HTML}{0039AC}
|
||||
\definecolor{ThirdColor}{HTML}{F3890B}
|
||||
\definecolor{BackgroundColor}{HTML}{E2E2E2}
|
||||
\colorlet{name}{PrimaryColor}
|
||||
\colorlet{tagline}{PrimaryColor}
|
||||
\colorlet{heading}{PrimaryColor}
|
||||
\colorlet{headingrule}{ThirdColor}
|
||||
\colorlet{subheading}{SecondaryColor}
|
||||
\colorlet{accent}{SecondaryColor}
|
||||
\colorlet{emphasis}{SlateGrey}
|
||||
\colorlet{body}{LightGrey}
|
||||
\pagecolor{BackgroundColor}
|
||||
% ----- DARK MODE -----
|
||||
%\definecolor{BackgroundColor}{HTML}{242424}
|
||||
%\definecolor{SlateGrey}{HTML}{6F6F6F}
|
||||
%\definecolor{LightGrey}{HTML}{ABABAB}
|
||||
%\definecolor{PrimaryColor}{HTML}{3F7FFF}
|
||||
%\colorlet{name}{PrimaryColor}
|
||||
%\colorlet{tagline}{PrimaryColor}
|
||||
%\colorlet{heading}{PrimaryColor}
|
||||
%\colorlet{headingrule}{PrimaryColor}
|
||||
%\colorlet{subheading}{PrimaryColor}
|
||||
%\colorlet{accent}{PrimaryColor}
|
||||
%\colorlet{emphasis}{LightGrey}
|
||||
%\colorlet{body}{LightGrey}
|
||||
%\pagecolor{BackgroundColor}
|
||||
|
||||
% Change some fonts, if necessary
|
||||
\renewcommand{\namefont}{\Huge\rmfamily\bfseries}
|
||||
\renewcommand{\personalinfofont}{\small\bfseries}
|
||||
\renewcommand{\cvsectionfont}{\LARGE\rmfamily\bfseries}
|
||||
\renewcommand{\cvsubsectionfont}{\large\bfseries}
|
||||
|
||||
% Change the bullets for itemize and rating marker
|
||||
% for \cvskill if you want to
|
||||
\renewcommand{\itemmarker}{{\small\textbullet}}
|
||||
\renewcommand{\ratingmarker}{\faCircle}
|
||||
|
||||
%% sample.bib contains your publications
|
||||
%% \addbibresource{sample.bib}
|
||||
|
||||
\begin{document}
|
||||
\name{Angelika Iskra}
|
||||
\tagline{Front End Developer}
|
||||
%% You can add multiple photos on the left or right
|
||||
\photoL{4cm}{ja}
|
||||
|
||||
\personalinfo{
|
||||
\email{angela.iskra588@gmail.com}\smallskip
|
||||
\phone{+48-123-123-123}
|
||||
\location{Szczecin, Polska}\\
|
||||
\github{angelikaiskra}
|
||||
%\homepage{nicolasomar.me}
|
||||
%\medium{nicolasomar}
|
||||
%% You MUST add the academicons option to \documentclass, then compile with LuaLaTeX or XeLaTeX, if you want to use \orcid or other academicons commands.
|
||||
% \orcid{0000-0000-0000-0000}
|
||||
%% You can add your own arbtrary detail with
|
||||
%% \printinfo{symbol}{detail}[optional hyperlink prefix]
|
||||
% \printinfo{\faPaw}{Hey ho!}[https://example.com/]
|
||||
%% Or you can declare your own field with
|
||||
%% \NewInfoFiled{fieldname}{symbol}[optional hyperlink prefix] and use it:
|
||||
% \NewInfoField{gitlab}{\faGitlab}[https://gitlab.com/]
|
||||
% \gitlab{your_id}
|
||||
}
|
||||
|
||||
\makecvheader
|
||||
%% Depending on your tastes, you may want to make fonts of itemize environments slightly smaller
|
||||
% \AtBeginEnvironment{itemize}{\small}
|
||||
|
||||
%% Set the left/right column width ratio to 6:4.
|
||||
\columnratio{0.25}
|
||||
|
||||
% Start a 2-column paracol. Both the left and right columns will automatically
|
||||
% break across pages if things get too long.
|
||||
\begin{paracol}{2}
|
||||
% ----- STRENGTHS -----
|
||||
\cvsection{Umiejętności miękkie}
|
||||
\cvtag{Chęć rozwoju}
|
||||
|
||||
\cvtag{Umiejętność pracy w grupie}
|
||||
\cvtag{Motywacja do działania}
|
||||
|
||||
\cvtag{Zaangażowanie}
|
||||
|
||||
\cvtag{Elastyczność}
|
||||
|
||||
\cvtag{Zdolność adaptacji}
|
||||
\medskip
|
||||
% ----- STRENGTHS -----
|
||||
|
||||
% ----- LEARNING -----
|
||||
\cvsection{Technologie}
|
||||
\cvtag{HTML}
|
||||
\cvtag{CSS}
|
||||
\cvtag{JS}
|
||||
\cvtag{React}
|
||||
\cvtag{SASS}
|
||||
\cvtag{Git}
|
||||
\cvtag{WordPress}
|
||||
\cvtag{React Native}
|
||||
\cvtag{Laravel}
|
||||
\medskip
|
||||
% ----- LEARNING -----
|
||||
|
||||
% ----- LANGUAGES -----
|
||||
\cvsection{Języki}
|
||||
\cvlang{Angielski}{Zaawansowany}\\
|
||||
\divider
|
||||
|
||||
\cvlang{Niemiecki}{Początkujący}
|
||||
%% Yeah I didn't spend too much time making all the
|
||||
%% spacing consistent... sorry. Use \smallskip, \medskip,
|
||||
%% \bigskip, \vpsace etc to make ajustments.
|
||||
\smallskip
|
||||
% ----- LANGUAGES -----
|
||||
|
||||
% ----- REFERENCES -----
|
||||
\cvsection{Certyfikaty}
|
||||
\cvref{CISCO IT Essentials}
|
||||
\divider
|
||||
|
||||
\cvref{CompTIA IT Fundamentals}
|
||||
\divider
|
||||
|
||||
\cvref{CompTIA Linux+}
|
||||
\divider
|
||||
|
||||
\cvref{HTML5 Application Development Fundamentals}
|
||||
\divider
|
||||
|
||||
\cvref{Introduction to Programming using Java}
|
||||
\smallskip
|
||||
% ----- REFERENCES -----
|
||||
|
||||
% ----- MOST PROUD -----
|
||||
% \cvsection{Most Proud of}
|
||||
|
||||
% \cvachievement{\faTrophy}{Fantastic Achievement}{and some details about it}\\
|
||||
% \divider
|
||||
% \cvachievement{\faHeartbeat}{Another achievement}{more details about it of course}\\
|
||||
% \divider
|
||||
% \cvachievement{\faHeartbeat}{Another achievement}{more details about it of course}
|
||||
% ----- MOST PROUD -----
|
||||
|
||||
% \cvsection{A Day of My Life}
|
||||
|
||||
% Adapted from @Jake's answer from http://tex.stackexchange.com/a/82729/226
|
||||
% \wheelchart{outer radius}{inner radius}{
|
||||
% comma-separated list of value/text width/color/detail}
|
||||
% \wheelchart{1.5cm}{0.5cm}{%
|
||||
% 6/8em/accent!30/{Sleep,\\beautiful sleep},
|
||||
% 3/8em/accent!40/Hopeful novelist by night,
|
||||
% 8/8em/accent!60/Daytime job,
|
||||
% 2/10em/accent/Sports and relaxation,
|
||||
% 5/6em/accent!20/Spending time with family
|
||||
% }
|
||||
|
||||
% use ONLY \newpage if you want to force a page break for
|
||||
% ONLY the current column
|
||||
\newpage
|
||||
|
||||
%% Switch to the right column. This will now automatically move to the second
|
||||
%% page if the content is too long.
|
||||
\switchcolumn
|
||||
|
||||
% ----- ABOUT ME -----
|
||||
\cvsection{O Mnie}
|
||||
\begin{quote}
|
||||
Programowaniem zaczęłam interesować się w wieku 17 lat. Od tego czasu nie pozwalam sobie stać w miejscu i ciągle udoskonalam swoje umiejętności. Głównym kierunkiem, który obrałam są technologie frontendowe, a zwłaszcza biblioteka JS - React.
|
||||
\end{quote}
|
||||
% ----- ABOUT ME -----
|
||||
|
||||
% ----- EXPERIENCE -----
|
||||
\cvsection{Doświadczenie}
|
||||
\cvevent{ }{| Stettiner}{Wrz 2019 -- Teraz}{Szczecin, Polska}
|
||||
\begin{itemize}
|
||||
\item Stanowisko: React and WordPress Developer
|
||||
\end{itemize}
|
||||
% ----- EXPERIENCE -----
|
||||
|
||||
% ----- EDUCATION -----
|
||||
\cvsection{Edukacja}
|
||||
\cvevent{Szkoła wyższa }{| Uniwersytet im. Adama Mickiewicza}{2020 -- Teraz}{Poznań, Polska}
|
||||
\divider
|
||||
|
||||
\cvevent{Szkoła średnia }{| Technikum Informatyczne SCI}{2016 -- 2020}{Szczecin, Polska}
|
||||
\begin{itemize}
|
||||
\item Specjalizacja: Programowanie Gier
|
||||
\end{itemize}
|
||||
% ----- EDUCATION -----
|
||||
|
||||
% ----- PROJECTS -----
|
||||
\cvsection{Projekty}
|
||||
\cvevent{GrinchsCode }{\cvrepo{| \faGithub}{https://github.com/Kbuczynski/grinchs-code}\cvrepo{| \faGlobe}{https://kbuczynski.github.io/grinchs-code/}}{Listopad 2019}{}
|
||||
\begin{itemize}
|
||||
\item Strona dla hackathonu, który wraz ze znajomymi organizowałam w szkole średniej
|
||||
\end{itemize}
|
||||
\divider
|
||||
|
||||
\cvevent{Kino Polska Konkurs }{\cvrepo{| \faGlobe}{https://kinopolska.pl/konkurs/}}{Październik 2019}{}
|
||||
\divider
|
||||
|
||||
\cvevent{Pomagam Kino TV }{\cvrepo{| \faGlobe}{https://pomagam.kinotv.pl/}}{Kwiecień 2020}{}
|
||||
\begin{itemize}
|
||||
\item Strona wykonana dla Kino Polska w ramach pracy w firmie Stettiner
|
||||
\end{itemize}
|
||||
\divider
|
||||
|
||||
\cvevent{Uwaga Dzik }{\cvrepo{|
|
||||
\faGithub}{https://github.com/Uwaga-Dzik/mobile-app}\cvrepo{|
|
||||
\faGlobe}{https://www.youtube.com/watch?v=IpjO-MXOHNI&ab_channel=DarkSavior}}{Listopad 2020}{}
|
||||
\begin{itemize}
|
||||
\item Aplikacja mobilna w React Native, stworzona w trakcie HackYeah 2020
|
||||
\end{itemize}
|
||||
% ----- PROJECTS -----
|
||||
\end{paracol}
|
||||
\end{document}
|
18
ZAD 11/nicethings_icons_readme.txt
Normal file
18
ZAD 11/nicethings_icons_readme.txt
Normal file
@ -0,0 +1,18 @@
|
||||
------------------
|
||||
Freebie: Nice Things Icon Set (128 Icons, PNG, AI)
|
||||
Designed by Chris Behr (http://www.chrisbehr.com/) and released for Smashing Magazine and its readers.
|
||||
------------------
|
||||
|
||||
Dear Friends,
|
||||
|
||||
Thank you for downloading this icon set!
|
||||
|
||||
This freebie has been brought to you by SmashingMagazine.com. You can freely use it for both your private and commercial projects, including software, online services, templates and themes.
|
||||
|
||||
However, the icons may not be resold, sublicensed, rented, transferred or otherwise made available for use. The icons may not be offered for free downloading from websites other than SmashingMagazine.com.
|
||||
|
||||
Please link to the article in which this freebie was released if you would like to spread the word: http://www.smashingmagazine.com/2013/11/01/freebie-nice-things-icon-set/
|
||||
|
||||
Smashing Magazine Team,
|
||||
www.smashingmagazine.com
|
||||
|
Loading…
Reference in New Issue
Block a user