diff options
author | Mateja <mail@matejamaric.com> | 2021-02-11 12:13:26 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2021-02-11 12:13:26 +0100 |
commit | 8854bc77c6f97a09d3fea7d3ee0182b82562e978 (patch) | |
tree | b1ffe4da1caa9ee504a6a13defab2e9761fb7616 /myCV_Class.cls | |
parent | eab1ef197408942f88817c43d5fe9a1d212ce053 (diff) | |
download | cv-8854bc77c6f97a09d3fea7d3ee0182b82562e978.tar.gz cv-8854bc77c6f97a09d3fea7d3ee0182b82562e978.zip |
Update CV to use my class.
Updated my class so CV can compile.
Diffstat (limited to 'myCV_Class.cls')
-rw-r--r-- | myCV_Class.cls | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/myCV_Class.cls b/myCV_Class.cls index db0507b..0d0d780 100644 --- a/myCV_Class.cls +++ b/myCV_Class.cls @@ -5,16 +5,23 @@ \LoadClass[a4paper,10pt]{article} \RequirePackage[utf8]{inputenc} -\RequirePackage[margin=2.5cm]{geometry} +\RequirePackage[margin=25mm]{geometry} +\RequirePackage{hyperref} + +\RequirePackage{titling} \RequirePackage{titlesec} % Set default font to Fira Sans Light using sfdefault option \RequirePackage[sfdefault,light]{FiraSans} +% \RequirePackage[defaultsans]{opensans} +% \renewcommand{\familydefault}{\sfdefault} + % Add Font Awesome \RequirePackage{fontawesome} +% Info commands \newcommand*{\email}[1] { \def\@email{{\small\faEnvelope}~#1} } @@ -26,3 +33,27 @@ \newcommand*{\github}[1] { \def\@github{{\small\faGithub}~#1} } + +\newcommand*{\makecvtitle} { + \begin{flushleft} + \huge\bfseries + \theauthor \hfill CV + \normalsize\mdseries + \end{flushleft} +} + +\newcommand{\cvedu}[6] { + +} + +\newcommand{\cvitem}[2] { + +} + +\newcommand{\cvjob}[6] { + +} + +\newcommand{\cvproject}[3] { +#3 +} |