Skip to content

Instantly share code, notes, and snippets.

@notquitehere
Last active January 18, 2024 11:45

Revisions

  1. notquitehere revised this gist Jan 18, 2024. 1 changed file with 97 additions and 1 deletion.
    98 changes: 97 additions & 1 deletion pandoc-cv.tex
    Original file line number Diff line number Diff line change
    @@ -1 +1,97 @@
    ‎‎​
    \documentclass{article}

    % PACKAGES
    \usepackage{hyperref}
    \usepackage{fancyhdr}
    \usepackage{array}

    % LAYOUT

    $if(geometry)$
    \usepackage[$for(geometry)$$geometry$$sep$,$endfor$]{geometry}
    $endif$

    % redefine headheight to allow for the double line header
    \setlength{\headheight}{25pt}
    \addtolength{\topmargin}{-13pt}

    \pagestyle{fancy}
    \fancyhead{} % clear header fields
    \fancyhead[C]{
    \textbf{\large{$name$}} \\
    $email$$phone$
    }

    \fancypagestyle{plain}{
    % set headheight on plain to allow for the extra height in this setup
    \setlength{\headheight}{46pt}
    \addtolength{\topmargin}{-12pt}

    \fancyhf{} % clear header and footer
    \fancyhead[C] {
    \textbf{\Huge{$name$}} \\
    $email$$phone$
    }
    }

    \renewcommand{\headrule}{} % remove rule
    \fancyfoot{} % clear footer fields

    $if(fontfamily)$
    \usepackage[default]{$fontfamily$}
    $endif$

    \setlength{\parindent}{0pt}

    % STYLE

    $if(urlcolor)$
    \usepackage{xcolor}
    \definecolor{default-urlcolor}{HTML}{$urlcolor$}

    \hypersetup{
    colorlinks=True,
    urlcolor=default-urlcolor,
    }
    $endif$

    \usepackage{titlesec}
    \titleformat
    {\section} % command
    [display] % shape
    {\LARGE} % format
    {} % label
    {0.5ex} % sep
    { \vspace{-4ex} } % before-code
    [ \vspace{-0.9ex} ] % after-code

    % MACROS

    \newcommand{\skill}[2] {
    \setlength{\tabcolsep}{0em}
    \begin{tabular}{ p{0.3\textwidth} >{\raggedright\arraybackslash}p{0.69\textwidth} }
    #1 & #2
    \end{tabular}
    \vspace{1em}
    }

    \newcommand{\education}[4] {
    \textbf{#1\hfill#2}

    #3\vspace{0.5em}

    \textsl{#4}\vspace{1em}
    }

    \newcommand{\work}[4]{
    \textbf{#1\hfill#2}

    #3\vspace{0.5em}

    #4\vspace{1em}
    }

    \begin{document}
    \thispagestyle{plain}
    $body$
    \end{document}
  2. notquitehere revised this gist Jan 18, 2024. 1 changed file with 57 additions and 1 deletion.
    58 changes: 57 additions & 1 deletion cv.md
    Original file line number Diff line number Diff line change
    @@ -1 +1,57 @@
    ‎‎​
    ---
    fontfamily: raleway
    geometry:
    - a4paper
    - right=12.7mm
    - bottom=12.7mm
    - left=12.7mm
    urlcolor: 774DA8
    name: Tamarisk
    email: <site@tamarisk.it>
    phone: '[00000 000 000](tel:00000000000)'
    numbersections: false
    ---

    # Technical skills

    \skill{Proficient in}{Python, C++, HTML, SQL}

    \skill{Good understanding of}{Qt, Machine Learning, CAN-Bus}

    \skill{Experience of}{Writing CLIs, LaTeX}

    # Education

    \education{MSc in Computer Science}{YYYY}{A University}{
    Some information about what was studied.
    }

    \education{BSc in Mathematics}{YYYY}{A University}{
    Some information about what was studied.
    }

    # Work history

    \work{Job Title}{Month YYYY - current}{Company}{
    A bit about the job roll.
    }

    \work{Job Title}{Month YYYY - Month YYYY}{Company}{
    A bit about the job roll.
    }

    \work{Job Title}{Month YYYY - Month YYYY}{Company}{
    A bit about the job roll.
    }

    \newpage

    # Volunatry work

    \work{Roll}{Month YYYY - current}{Organisation}{
    A bit about the roll.
    }

    \work{Roll}{Month YYYY - Month YYYY}{Organisation}{
    A bit about the roll.
    }
  3. notquitehere revised this gist Jan 18, 2024. 2 changed files with 2 additions and 0 deletions.
    1 change: 1 addition & 0 deletions cv.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ‎‎​
    1 change: 1 addition & 0 deletions pandoc-cv.tex
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ‎‎​
  4. notquitehere revised this gist Jan 16, 2024. 1 changed file with 135 additions and 1 deletion.
    136 changes: 135 additions & 1 deletion cv.tex
    Original file line number Diff line number Diff line change
    @@ -1 +1,135 @@
    ‎‎​
    \documentclass{article}

    % PACKAGES

    \usepackage{hyperref}
    \usepackage{fancyhdr}
    \usepackage{array}

    % LAYOUT

    \usepackage{geometry}
    \geometry{
    a4paper,
    left=12.7mm,
    right=12.7mm,
    bottom=12.7mm
    }
    % redefine headheight to allow for the double line header
    \setlength{\headheight}{25pt}
    \addtolength{\topmargin}{-13pt}

    \pagestyle{fancy}
    \fancyhead{} % clear header fields
    \fancyhead[C]{
    \textbf{\large{Tamarisk}} \\
    \href{mailto:site@tamarisk.it}{site@tamarisk.it} • \href{tel:00000000000}{00000 000 000}
    }

    \fancypagestyle{plain}{
    % set headheight on plain to allow for the extra height in this setup
    \setlength{\headheight}{46pt}
    \addtolength{\topmargin}{-12pt}

    \fancyhf{} % clear header and footer
    \fancyhead[C] {
    \textbf{\Huge{Tamarisk}} \\
    \href{mailto:site@tamarisk.it}{site@tamarisk.it} • \href{tel:00000000000}{00000 000 000}

    }
    }

    \renewcommand{\headrule}{} % remove rule
    \fancyfoot{} % clear footer fields

    % STYLE

    \usepackage{xcolor}
    \definecolor{default-urlcolor}{HTML}{774DA8}

    \hypersetup{
    colorlinks=True,
    urlcolor=default-urlcolor,
    }

    \usepackage[default]{raleway}
    \setlength{\parindent}{0pt}

    \usepackage{titlesec}
    \titleformat
    {\section} % command
    [display] % shape
    {\LARGE} % format
    {} % label
    {0.5ex} % sep
    {} % before-code
    [ \vspace{-0.9ex} ] % after-code

    % MACROS

    \newcommand{\skill}[2] {
    \setlength{\tabcolsep}{0em}
    \begin{tabular}{ p{0.3\textwidth} >{\raggedright\arraybackslash}p{0.69\textwidth} }
    #1 & #2
    \end{tabular}
    \vspace{1em}
    }

    \newcommand{\education}[4] {
    \textbf{#1\hfill#2}

    #3\vspace{0.5em}

    \textsl{#4}\vspace{1em}
    }

    \newcommand{\work}[4]{
    \textbf{#1\hfill#2}

    #3\vspace{0.5em}

    #4\vspace{1em}
    }

    \begin{document}
    \thispagestyle{plain}
    \section*{Technical skills}

    \skill{Proficient in}{Python, C++, HTML, SQL}

    \skill{Good understanding of}{Qt, Machine Learning, CAN-Bus}

    \skill{Experience of}{Writing CLIs, LaTeX}

    \section*{Eduction}

    \education{MSc in Computer Science}{YYYY}{A University}{
    Some information about what was studied.
    }

    \education{BSc in Mathematics}{YYYY}{A University}{
    Some information about what was studied.
    }

    \section*{Work history}
    \work{Job Title}{Month YYYY - current}{Company}{
    A bit about the job roll.
    }

    \work{Job Title}{Month YYYY - Month YYYY}{Company}{
    A bit about the job roll.
    }

    \work{Job Title}{Month YYYY - Month YYYY}{Company}{
    A bit about the job roll.
    }

    \section*{Voluntary work}
    \work{Roll}{Month YYYY - current}{Organisation}{
    A bit about the roll.
    }

    \work{Roll}{Month YYYY - Month YYYY}{Organisation}{
    A bit about the roll.
    }
    \end{document}
  5. notquitehere created this gist Jan 16, 2024.
    1 change: 1 addition & 0 deletions cv.tex
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    ‎‎​