From d4a5ca784d9362dcefc6340bd11fb3cd812604f0 Mon Sep 17 00:00:00 2001 From: Sina Atalay <79940989+sinaatalay@users.noreply.github.com> Date: Sun, 7 Apr 2024 17:41:52 +0000 Subject: [PATCH] tests: update testdata --- .../classic_empty.tex | 161 +- .../classic_filled.tex | 2693 +++++------------ .../engineeringresumes_empty.tex | 126 +- .../engineeringresumes_filled.tex | 1720 ++++++----- .../classic_empty/None_CV.tex | 161 +- .../classic_filled/John_Doe_CV.tex | 2693 +++++------------ .../engineeringresumes_empty/None_CV.tex | 126 +- .../engineeringresumes_filled/John_Doe_CV.tex | 1720 ++++++----- .../test_latex_to_pdf/classic_empty.pdf | Bin 301228 -> 323015 bytes .../test_latex_to_pdf/classic_filled.pdf | Bin 409362 -> 410983 bytes .../engineeringresumes_empty.pdf | Bin 32915 -> 42858 bytes .../engineeringresumes_filled.pdf | Bin 158771 -> 130203 bytes .../test_latex_to_pdf/moderncv_empty.pdf | Bin 27698 -> 27687 bytes .../test_latex_to_pdf/moderncv_filled.pdf | Bin 244035 -> 244023 bytes .../test_latex_to_pdf/sb2nov_empty.pdf | Bin 31410 -> 31398 bytes .../test_latex_to_pdf/sb2nov_filled.pdf | Bin 191439 -> 191427 bytes 16 files changed, 4028 insertions(+), 5372 deletions(-) diff --git a/tests/testdata/test_generate_latex_file/classic_empty.tex b/tests/testdata/test_generate_latex_file/classic_empty.tex index f131a67..14fbe50 100644 --- a/tests/testdata/test_generate_latex_file/classic_empty.tex +++ b/tests/testdata/test_generate_latex_file/classic_empty.tex @@ -2,14 +2,14 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage[explicit]{titlesec} % for customizing section titles \usepackage{tabularx} % for making tables with fixed width columns \usepackage{array} % tabularx requires this @@ -29,13 +29,24 @@ \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages \usepackage[default, type1]{sourcesanspro} % for using source sans 3 font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -45,55 +56,80 @@ \pagestyle{customFooterStyle} \titleformat{\section}{ - % make the font size of the section title large and color it with the primary color - \Large\color{primaryColor} - }{ - }{ - }{ - % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness - % from the end of the title to the end of the body - \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} - }[] % section title formatting + % avoid page braking right after the section title + \needspace{4\baselineskip} + % make the font size of the section title large and color it with the primary color + \Large\color{primaryColor} +}{ +}{ +}{ + % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness + % from the end of the title to the end of the body + \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} +}[] % section title formatting \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing -\newcolumntype{L}[1]{ - >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % left-aligned fixed width column type -\newcolumntype{R}[1]{ - >{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % right-aligned fixed width column type -\newcolumntype{K}[1]{ - >{\let\newline\\\arraybackslash\hspace{0pt}}X -} % justified flexible width column type -\setlength\tabcolsep{-1.5pt} % no space between columns \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - parsep=0.10 cm, - partopsep=0pt, - itemsep=0pt, - after=\vspace{-1\baselineskip}, - leftmargin=0.4 cm + 3pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0.4 cm + 3pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0.2 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0.2 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground @@ -111,31 +147,16 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -\let\originalTabularx\tabularx -\let\originalEndTabularx\endtabularx - -\renewenvironment{tabularx}{\bgroup\centering\originalTabularx}{\originalEndTabularx\par\egroup} - -% For TextEntrys (see https://tex.stackexchange.com/a/600/287984): -\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1\topsep=0pt\itemsep=0pt\parsep=0pt\parskip=0pt\labelwidth=0pt\itemindent=0pt\labelsep=0pt}\item[]} -\let\endchangemargin=\endlist - -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \section{Test} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - test - \par\endgroup + + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file/classic_filled.tex b/tests/testdata/test_generate_latex_file/classic_filled.tex index be0d670..afd62d1 100644 --- a/tests/testdata/test_generate_latex_file/classic_filled.tex +++ b/tests/testdata/test_generate_latex_file/classic_filled.tex @@ -2,14 +2,14 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage[explicit]{titlesec} % for customizing section titles \usepackage{tabularx} % for making tables with fixed width columns \usepackage{array} % tabularx requires this @@ -29,13 +29,24 @@ \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages \usepackage[default, type1]{sourcesanspro} % for using source sans 3 font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -45,55 +56,80 @@ \pagestyle{customFooterStyle} \titleformat{\section}{ - % make the font size of the section title large and color it with the primary color - \Large\color{primaryColor} - }{ - }{ - }{ - % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness - % from the end of the title to the end of the body - \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} - }[] % section title formatting + % avoid page braking right after the section title + \needspace{4\baselineskip} + % make the font size of the section title large and color it with the primary color + \Large\color{primaryColor} +}{ +}{ +}{ + % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness + % from the end of the title to the end of the body + \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} +}[] % section title formatting \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing -\newcolumntype{L}[1]{ - >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % left-aligned fixed width column type -\newcolumntype{R}[1]{ - >{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % right-aligned fixed width column type -\newcolumntype{K}[1]{ - >{\let\newline\\\arraybackslash\hspace{0pt}}X -} % justified flexible width column type -\setlength\tabcolsep{-1.5pt} % no space between columns \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - parsep=0.10 cm, - partopsep=0pt, - itemsep=0pt, - after=\vspace{-1\baselineskip}, - leftmargin=0.4 cm + 3pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0.4 cm + 3pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0.2 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0.2 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground @@ -111,19 +147,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -\let\originalTabularx\tabularx -\let\originalEndTabularx\endtabularx - -\renewenvironment{tabularx}{\bgroup\centering\originalTabularx}{\originalEndTabularx\par\egroup} - -% For TextEntrys (see https://tex.stackexchange.com/a/600/287984): -\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1\topsep=0pt\itemsep=0pt\parsep=0pt\parskip=0pt\labelwidth=0pt\itemindent=0pt\labelsep=0pt}\item[]} -\let\endchangemargin=\endlist - -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \begin{header} @@ -158,66 +181,58 @@ \section{Text Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \section{Bullet Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup - + + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \section{Publication Entries} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -225,12 +240,13 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}& - Sept. 2021 - \end{tabularx} + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -238,12 +254,13 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - IEEE Transactions on Applied Superconductivity& - Sept. 2021 - \end{tabularx} + IEEE Transactions on Applied Superconductivity\end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -251,2541 +268,1481 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)& - Sept. 2021 - \end{tabularx} + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{twocolentry} \section{Experience Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & + + \begin{twocolentry}{ - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2015 to present } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2015 to present } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{Some \textnormal{Company}}, Software Engineer + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{0.10 cm} - & + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} \section{Education Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & + + \begin{threecolentry}{\textbf{}}{ - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2015 to present } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2015 to present } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Istanbul, Turkey + + Sept. 2015 to present } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} \section{Normal Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & + + \begin{twocolentry}{ - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2015 to present } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2015 to present } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{My Project} + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{0.10 cm} - & + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} \section{One Line Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB - \par\endgroup + + \begin{onecolentry} + \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file/engineeringresumes_empty.tex b/tests/testdata/test_generate_latex_file/engineeringresumes_empty.tex index f1df769..12e8e0e 100644 --- a/tests/testdata/test_generate_latex_file/engineeringresumes_empty.tex +++ b/tests/testdata/test_generate_latex_file/engineeringresumes_empty.tex @@ -2,15 +2,17 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage{titlesec} % for customizing section titles +\usepackage{tabularx} % for making tables with fixed width columns +\usepackage{array} % tabularx requires this \usepackage[dvipsnames]{xcolor} % for coloring text \definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color \usepackage{enumitem} % for customizing lists @@ -26,14 +28,25 @@ \usepackage{calc} % for calculating lengths \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages -% \usepackage{charter} % for using charter font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title +\usepackage{charter} % for using charter font + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -42,42 +55,76 @@ \makeatother \pagestyle{customFooterStyle} -\titleformat{\section}{\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] +\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing - \renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} +\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - partopsep=0pt, - itemsep=0pt, - % after=\vspace{-1\baselineskip}, - leftmargin=10pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0 cm + 10pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground \put( - \LenToUnit{\paperwidth-2 cm+0.05cm}, + \LenToUnit{\paperwidth-2 cm-0 cm+0.05cm}, \LenToUnit{\paperheight-1.0 cm} ){\vtop{{\null}\makebox[0pt][c]{ \small\color{gray}\textit{Last updated in January 2024}\hspace{\widthof{Last updated in January 2024}} @@ -90,10 +137,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext @@ -101,8 +144,9 @@ \section{Test} - test - + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file/engineeringresumes_filled.tex b/tests/testdata/test_generate_latex_file/engineeringresumes_filled.tex index 98abce7..0e7f333 100644 --- a/tests/testdata/test_generate_latex_file/engineeringresumes_filled.tex +++ b/tests/testdata/test_generate_latex_file/engineeringresumes_filled.tex @@ -2,15 +2,17 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage{titlesec} % for customizing section titles +\usepackage{tabularx} % for making tables with fixed width columns +\usepackage{array} % tabularx requires this \usepackage[dvipsnames]{xcolor} % for coloring text \definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color \usepackage{enumitem} % for customizing lists @@ -26,14 +28,25 @@ \usepackage{calc} % for calculating lengths \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages -% \usepackage{charter} % for using charter font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title +\usepackage{charter} % for using charter font + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -42,42 +55,76 @@ \makeatother \pagestyle{customFooterStyle} -\titleformat{\section}{\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] +\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing - \renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} +\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - partopsep=0pt, - itemsep=0pt, - % after=\vspace{-1\baselineskip}, - leftmargin=10pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0 cm + 10pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground \put( - \LenToUnit{\paperwidth-2 cm+0.05cm}, + \LenToUnit{\paperwidth-2 cm-0 cm+0.05cm}, \LenToUnit{\paperheight-1.0 cm} ){\vtop{{\null}\makebox[0pt][c]{ \small\color{gray}\textit{Last updated in January 2024}\hspace{\widthof{Last updated in January 2024}} @@ -90,10 +137,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \begin{header} @@ -107,7 +150,7 @@ \hspace*{0.5 cm} \mbox{\hrefWithoutArrow{mailto:johndoe@example.com}{\color{black}{\small\faEnvelope[regular]}\hspace*{0.13cm}johndoe@example.com}} \hspace*{0.5 cm} - \mbox{{\small\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey} + \mbox{\color{black}{\small\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey} \hspace*{0.5 cm} \mbox{\hrefWithoutArrow{https://example.com/}{\color{black}{\small\faLink}\hspace*{0.13cm}example.com}} \hspace*{0.5 cm} @@ -129,313 +172,407 @@ \section{Text Entries} - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - - - \vspace{8pt} - - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \vspace{0.1 cm} + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \section{Bullet Entries} - $\vcenter{\hbox{\small$\bullet$}}$ My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} + \vspace{0.1 cm} - $\vcenter{\hbox{\small$\bullet$}}$ My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \section{Publication Entries} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}\end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - \vspace{8pt} + \vspace{0.10 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{highlights} + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item IEEE Transactions on Applied Superconductivity\end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - \vspace{8pt} + \vspace{0.10 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{highlights} + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{twocolentry} + + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} + + \vspace{0.10 cm} + + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + IEEE Transactions on Applied Superconductivity\end{twocolentry} + + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} + + \vspace{0.10 cm} + + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{twocolentry} \section{Experience Entries} - \textbf{Software Engineer}, Some \textbf{Company} \hfill + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company}\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -443,514 +580,626 @@ \section{Education Entries} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{onecolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{onecolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -958,258 +1207,314 @@ \section{Normal Entries} - \textbf{My Project} \hfill + \begin{onecolentry} + \textbf{My Project}\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} -- Istanbul, Turkey\end{onecolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -1217,8 +1522,9 @@ \section{One Line Entries} - \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB - + \begin{onecolentry} + \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_empty/None_CV.tex b/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_empty/None_CV.tex index f131a67..14fbe50 100644 --- a/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_empty/None_CV.tex +++ b/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_empty/None_CV.tex @@ -2,14 +2,14 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage[explicit]{titlesec} % for customizing section titles \usepackage{tabularx} % for making tables with fixed width columns \usepackage{array} % tabularx requires this @@ -29,13 +29,24 @@ \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages \usepackage[default, type1]{sourcesanspro} % for using source sans 3 font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -45,55 +56,80 @@ \pagestyle{customFooterStyle} \titleformat{\section}{ - % make the font size of the section title large and color it with the primary color - \Large\color{primaryColor} - }{ - }{ - }{ - % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness - % from the end of the title to the end of the body - \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} - }[] % section title formatting + % avoid page braking right after the section title + \needspace{4\baselineskip} + % make the font size of the section title large and color it with the primary color + \Large\color{primaryColor} +}{ +}{ +}{ + % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness + % from the end of the title to the end of the body + \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} +}[] % section title formatting \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing -\newcolumntype{L}[1]{ - >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % left-aligned fixed width column type -\newcolumntype{R}[1]{ - >{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % right-aligned fixed width column type -\newcolumntype{K}[1]{ - >{\let\newline\\\arraybackslash\hspace{0pt}}X -} % justified flexible width column type -\setlength\tabcolsep{-1.5pt} % no space between columns \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - parsep=0.10 cm, - partopsep=0pt, - itemsep=0pt, - after=\vspace{-1\baselineskip}, - leftmargin=0.4 cm + 3pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0.4 cm + 3pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0.2 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0.2 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground @@ -111,31 +147,16 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -\let\originalTabularx\tabularx -\let\originalEndTabularx\endtabularx - -\renewenvironment{tabularx}{\bgroup\centering\originalTabularx}{\originalEndTabularx\par\egroup} - -% For TextEntrys (see https://tex.stackexchange.com/a/600/287984): -\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1\topsep=0pt\itemsep=0pt\parsep=0pt\parskip=0pt\labelwidth=0pt\itemindent=0pt\labelsep=0pt}\item[]} -\let\endchangemargin=\endlist - -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \section{Test} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - test - \par\endgroup + + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_filled/John_Doe_CV.tex b/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_filled/John_Doe_CV.tex index be0d670..afd62d1 100644 --- a/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_filled/John_Doe_CV.tex +++ b/tests/testdata/test_generate_latex_file_and_copy_theme_files/classic_filled/John_Doe_CV.tex @@ -2,14 +2,14 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage[explicit]{titlesec} % for customizing section titles \usepackage{tabularx} % for making tables with fixed width columns \usepackage{array} % tabularx requires this @@ -29,13 +29,24 @@ \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages \usepackage[default, type1]{sourcesanspro} % for using source sans 3 font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -45,55 +56,80 @@ \pagestyle{customFooterStyle} \titleformat{\section}{ - % make the font size of the section title large and color it with the primary color - \Large\color{primaryColor} - }{ - }{ - }{ - % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness - % from the end of the title to the end of the body - \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} - }[] % section title formatting + % avoid page braking right after the section title + \needspace{4\baselineskip} + % make the font size of the section title large and color it with the primary color + \Large\color{primaryColor} +}{ +}{ +}{ + % print bold title, give 0.15 cm space and draw a line of 0.8 pt thickness + % from the end of the title to the end of the body + \textbf{#1}\hspace{0.15cm}\titlerule[0.8pt]\hspace{-0.1cm} +}[] % section title formatting \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing -\newcolumntype{L}[1]{ - >{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % left-aligned fixed width column type -\newcolumntype{R}[1]{ - >{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}p{#1} -} % right-aligned fixed width column type -\newcolumntype{K}[1]{ - >{\let\newline\\\arraybackslash\hspace{0pt}}X -} % justified flexible width column type -\setlength\tabcolsep{-1.5pt} % no space between columns \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - parsep=0.10 cm, - partopsep=0pt, - itemsep=0pt, - after=\vspace{-1\baselineskip}, - leftmargin=0.4 cm + 3pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0.4 cm + 3pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0.2 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0.2 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\color{primaryColor}\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground @@ -111,19 +147,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -\let\originalTabularx\tabularx -\let\originalEndTabularx\endtabularx - -\renewenvironment{tabularx}{\bgroup\centering\originalTabularx}{\originalEndTabularx\par\egroup} - -% For TextEntrys (see https://tex.stackexchange.com/a/600/287984): -\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1\topsep=0pt\itemsep=0pt\parsep=0pt\parskip=0pt\labelwidth=0pt\itemindent=0pt\labelsep=0pt}\item[]} -\let\endchangemargin=\endlist - -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \begin{header} @@ -158,66 +181,58 @@ \section{Text Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \section{Bullet Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup - + + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \vspace{0.2 cm} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - \par\endgroup + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \section{Publication Entries} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -225,12 +240,13 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}& - Sept. 2021 - \end{tabularx} + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -238,12 +254,13 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - IEEE Transactions on Applied Superconductivity& - Sept. 2021 - \end{tabularx} + IEEE Transactions on Applied Superconductivity\end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{\textwidth-0.4 cm-0.13cm}{K{0.2 cm} R{4.1 cm}} + + \begin{twocolentry}{ + Sept. 2021 + } \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} \vspace{0.10 cm} @@ -251,2541 +268,1481 @@ \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \vspace{0.10 cm} - \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)& - Sept. 2021 - \end{tabularx} + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{twocolentry} \section{Experience Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & + + \begin{twocolentry}{ - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2015 to present } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2015 to present } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{Some \textnormal{Company}}, Software Engineer + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{0.10 cm} - & + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{Some \textnormal{Company}}, Software Engineer - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{Some \textnormal{Company}}, Software Engineer - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Some \textnormal{Company}}, Software Engineer + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} \section{Education Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & + + \begin{threecolentry}{\textbf{}}{ - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2015 to present } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2015 to present } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Istanbul, Turkey + + Sept. 2015 to present } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Sept. 2021 } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} + \vspace{0.2 cm} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{} - & - \textbf{Boğaziçi University}, Mechanical Engineering - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} - } - \textbf{BS} - & - \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - L{0.85cm} - K{0.2 cm} - R{4.1 cm} } - \textbf{BS} - & \textbf{Boğaziçi University}, Mechanical Engineering - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{threecolentry} + + \vspace{0.2 cm} + + \begin{threecolentry}{\textbf{BS}}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{Boğaziçi University}, Mechanical Engineering + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{threecolentry} \section{Normal Entries} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & + + \begin{twocolentry}{ - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2015 to present } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - - & - Istanbul, Turkey - - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2015 to present } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Istanbul, Turkey + + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Jan. 2024 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - - & - Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & - Sept. 2021 - \end{tabularx} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} + + \begin{twocolentry}{ + Sept. 2021 } \textbf{My Project} + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{0.10 cm} - & + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \end{twocolentry} \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} - } - \textbf{My Project} - \vspace{0.10 cm} - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - & + \begin{twocolentry}{ Istanbul, Turkey Sept. 2015 to present - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Sept. 2021 - \end{tabularx} - - - \vspace{0.2 cm} - \begin{tabularx}{ - \textwidth-0.4 cm-0.13cm - }{ - K{0.2 cm} - R{4.1 cm} } \textbf{My Project} - - \vspace{0.10 cm} - \begin{highlights} \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. \item Did that. \end{highlights} - & + \end{twocolentry} + + + \vspace{0.2 cm} + + \begin{twocolentry}{ Istanbul, Turkey Sept. 2021 - \end{tabularx} + } + \textbf{My Project} + \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} \section{One Line Entries} - \begingroup\leftskip=0.2 cm - \advance\csname @rightskip\endcsname 0.2 cm - \advance\rightskip 0.2 cm - - \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB - \par\endgroup + + \begin{onecolentry} + \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_empty/None_CV.tex b/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_empty/None_CV.tex index f1df769..12e8e0e 100644 --- a/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_empty/None_CV.tex +++ b/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_empty/None_CV.tex @@ -2,15 +2,17 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage{titlesec} % for customizing section titles +\usepackage{tabularx} % for making tables with fixed width columns +\usepackage{array} % tabularx requires this \usepackage[dvipsnames]{xcolor} % for coloring text \definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color \usepackage{enumitem} % for customizing lists @@ -26,14 +28,25 @@ \usepackage{calc} % for calculating lengths \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages -% \usepackage{charter} % for using charter font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title +\usepackage{charter} % for using charter font + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -42,42 +55,76 @@ \makeatother \pagestyle{customFooterStyle} -\titleformat{\section}{\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] +\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing - \renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} +\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - partopsep=0pt, - itemsep=0pt, - % after=\vspace{-1\baselineskip}, - leftmargin=10pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0 cm + 10pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground \put( - \LenToUnit{\paperwidth-2 cm+0.05cm}, + \LenToUnit{\paperwidth-2 cm-0 cm+0.05cm}, \LenToUnit{\paperheight-1.0 cm} ){\vtop{{\null}\makebox[0pt][c]{ \small\color{gray}\textit{Last updated in January 2024}\hspace{\widthof{Last updated in January 2024}} @@ -90,10 +137,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext @@ -101,8 +144,9 @@ \section{Test} - test - + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} diff --git a/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_filled/John_Doe_CV.tex b/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_filled/John_Doe_CV.tex index 98abce7..0e7f333 100644 --- a/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_filled/John_Doe_CV.tex +++ b/tests/testdata/test_generate_latex_file_and_copy_theme_files/engineeringresumes_filled/John_Doe_CV.tex @@ -2,15 +2,17 @@ % Packages: \usepackage[ - ignoreheadfoot, % set margins without considering header and footer - top=2 cm, % seperation between body and page edge from the top - bottom=2 cm, % seperation between body and page edge from the bottom - left=2 cm, % seperation between body and page edge from the left - right=2 cm, % seperation between body and page edge from the right - footskip=1.0 cm, % seperation between body and footer - % showframe % for debugging - ]{geometry} % for adjusting page geometry + ignoreheadfoot, % set margins without considering header and footer + top=2 cm, % seperation between body and page edge from the top + bottom=2 cm, % seperation between body and page edge from the bottom + left=2 cm, % seperation between body and page edge from the left + right=2 cm, % seperation between body and page edge from the right + footskip=1.0 cm, % seperation between body and footer + % showframe % for debugging +]{geometry} % for adjusting page geometry \usepackage{titlesec} % for customizing section titles +\usepackage{tabularx} % for making tables with fixed width columns +\usepackage{array} % tabularx requires this \usepackage[dvipsnames]{xcolor} % for coloring text \definecolor{primaryColor}{RGB}{0, 79, 144} % define primary color \usepackage{enumitem} % for customizing lists @@ -26,14 +28,25 @@ \usepackage{calc} % for calculating lengths \usepackage{bookmark} % for bookmarks \usepackage{lastpage} % for getting the total number of pages -% \usepackage{charter} % for using charter font -\usepackage{ifthen} +\usepackage{changepage} % for one column entries (adjustwidth environment) +\usepackage{paracol} % for two and three column entries +\usepackage{ifthen} % for conditional statements +\usepackage{needspace} % for avoiding page brake right after the section title +\usepackage{charter} % for using charter font + +% Ensure that generate pdf is machine readable/ATS parsable: +\ifpdf + \input{glyphtounicode} + \pdfgentounicode=1 +\fi % Some settings: \pagestyle{empty} % no header or footer \setcounter{secnumdepth}{0} % no section numbering \setlength{\parindent}{0pt} % no indentation \setlength{\topskip}{0pt} % no top skip +\setlength{\columnsep}{0.15cm} % set column seperation + \makeatletter \let\ps@customFooterStyle\ps@plain % Copy the plain style to customFooterStyle \patchcmd{\ps@customFooterStyle}{\thepage}{ @@ -42,42 +55,76 @@ \makeatother \pagestyle{customFooterStyle} -\titleformat{\section}{\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] +\titleformat{\section}{\needspace{4\baselineskip}\bfseries\large}{}{0pt}{}[\vspace{1pt}\titlerule] \titlespacing{\section}{ - % left space: - 0pt - }{ - % top space: - 0.3 cm - }{ - % bottom space: - 0.2 cm - } % section title spacing + % left space: + 0pt +}{ + % top space: + 0.3 cm +}{ + % bottom space: + 0.2 cm +} % section title spacing - \renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} +\renewcommand\labelitemi{$\vcenter{\hbox{\small$\bullet$}}$} \newenvironment{highlights}{ - \begin{itemize}[ - topsep=0pt, - partopsep=0pt, - itemsep=0pt, - % after=\vspace{-1\baselineskip}, - leftmargin=10pt - ] + \begin{itemize}[ + topsep=0.10 cm, + parsep=0.10 cm, + partopsep=0pt, + itemsep=0pt, + leftmargin=0 cm + 10pt + ] +}{ + \end{itemize} +} % new environment for highlights + + +\newenvironment{onecolentry}{ + \begin{adjustwidth}{ + 0 cm + 0.00001 cm }{ - \end{itemize} - } % new environment for highlights + 0 cm + 0.00001 cm + } +}{ + \end{adjustwidth} +} % new environment for one column entries + +\newenvironment{twocolentry}[2][]{ + \onecolentry + \def\secondColumn{#2} + \setcolumnwidth{\fill, 4.2cm} + \begin{paracol}{2} +}{ + \switchcolumn \raggedleft \secondColumn + \end{paracol} + \endonecolentry +} % new environment for two column entries + +\newenvironment{threecolentry}[3][]{ + \onecolentry + \def\thirdColumn{#3} + \setcolumnwidth{1cm, \fill, 4.2cm} + \begin{paracol}{3} + \raggedright #2 \switchcolumn +}{ + \switchcolumn \raggedleft \thirdColumn + \end{paracol} + \endonecolentry +} % new environment for three column entries \newenvironment{header}{ - \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} - }{ - \par\kern\topsep - } % new environment for the header + \setlength{\topsep}{0pt}\par\kern\topsep\centering\linespread{1.5} +}{ + \par\kern\topsep +} % new environment for the header \newcommand{\placelastupdatedtext}{% \placetextbox{}{}{} \AddToShipoutPictureFG*{% Add to current page foreground \put( - \LenToUnit{\paperwidth-2 cm+0.05cm}, + \LenToUnit{\paperwidth-2 cm-0 cm+0.05cm}, \LenToUnit{\paperheight-1.0 cm} ){\vtop{{\null}\makebox[0pt][c]{ \small\color{gray}\textit{Last updated in January 2024}\hspace{\widthof{Last updated in January 2024}} @@ -90,10 +137,6 @@ % new command for external links: \renewcommand{\href}[2]{\hrefWithoutArrow{#1}{\mbox{\ifthenelse{\equal{#2}{}}{ }{#2 }\raisebox{.15ex}{\footnotesize \faExternalLink*}}}} -% Ensure that generate pdf is machine readable/ATS parsable -\input{glyphtounicode} -\pdfgentounicode=1 - \begin{document} \placelastupdatedtext \begin{header} @@ -107,7 +150,7 @@ \hspace*{0.5 cm} \mbox{\hrefWithoutArrow{mailto:johndoe@example.com}{\color{black}{\small\faEnvelope[regular]}\hspace*{0.13cm}johndoe@example.com}} \hspace*{0.5 cm} - \mbox{{\small\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey} + \mbox{\color{black}{\small\faMapMarker*}\hspace*{0.13cm}Istanbul, Turkey} \hspace*{0.5 cm} \mbox{\hrefWithoutArrow{https://example.com/}{\color{black}{\small\faLink}\hspace*{0.13cm}example.com}} \hspace*{0.5 cm} @@ -129,313 +172,407 @@ \section{Text Entries} - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! - - - \vspace{8pt} - - My Text Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \vspace{0.1 cm} + \begin{onecolentry} + This is an example resume to showcase the capabilities of the open-source LaTeX CV generator, \href{https://github.com/sinaatalay/rendercv}{RenderCV}. A substantial part of the content is taken from \href{https://www.careercup.com/resume}{here}, where a \textit{clean and tidy CV} pattern is proposed by \textbf{Gayle L. McDowell}. + \end{onecolentry} \section{Bullet Entries} - $\vcenter{\hbox{\small$\bullet$}}$ My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} + \vspace{0.1 cm} - $\vcenter{\hbox{\small$\bullet$}}$ My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! - + \begin{onecolentry} + \textbullet \hspace{3pt} My Bullet Entry with some \textbf{markdown} and \href{https://example.com}{links}! + \end{onecolentry} \section{Publication Entries} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname}\end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - \vspace{8pt} + \vspace{0.10 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{highlights} + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item IEEE Transactions on Applied Superconductivity\end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} - \vspace{8pt} + \vspace{0.10 cm} - \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} -- Sept. 2021 - \begin{highlights} - \item \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} \item \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{highlights} + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648}\end{twocolentry} + + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} + + \vspace{0.10 cm} + + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + IEEE Transactions on Applied Superconductivity\end{twocolentry} + + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Magneto-Thermal Thin Shell Approximation for 3D Finite Element Analysis of No-Insulation Coils} + + \vspace{0.10 cm} + + \mbox{J. Doe}, \mbox{\textbf{H. Tom}}, \mbox{S. Doe}, \mbox{A. Andsurname} + \vspace{0.10 cm} + + \href{https://doi.org/10.1109/TASC.2023.3340648}{10.1109/TASC.2023.3340648} (IEEE Transactions on Applied Superconductivity)\end{twocolentry} \section{Experience Entries} - \textbf{Software Engineer}, Some \textbf{Company} \hfill + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company}\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company}\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Software Engineer}, Some \textbf{Company} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -443,514 +580,626 @@ \section{Education Entries} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{onecolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{onecolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{onecolentry} + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey\end{twocolentry} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{Boğaziçi University}, BS in Mechanical Engineering -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -958,258 +1207,314 @@ \section{Normal Entries} - \textbf{My Project} \hfill + \begin{onecolentry} + \textbf{My Project}\end{onecolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} -- Istanbul, Turkey\end{onecolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Jan. 2024 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} + \vspace{0.1 cm} - \vspace{8pt} + \begin{onecolentry} + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{onecolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} \hfill Sept. 2021 + \begin{twocolentry}{ + Jan. 2024 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project}\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey\end{twocolentry} - \vspace{8pt} - \textbf{My Project} -- Istanbul, Turkey \hfill Jan. 2024 + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2015 to present + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} + \vspace{0.1 cm} - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \vspace{0.1 cm} - \vspace{8pt} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \textbf{My Project} \hfill Sept. 2021 + \vspace{0.1 cm} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} - \vspace{8pt} - \textbf{My Project} \hfill Sept. 2015 to present + \vspace{0.1 cm} - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2015 to present - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} - - - \vspace{8pt} - - \textbf{My Project} -- Istanbul, Turkey \hfill Sept. 2021 - - \begin{highlights} - \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. - \item Did that. - \end{highlights} + \begin{twocolentry}{ + Sept. 2021 + } + \textbf{My Project} -- Istanbul, Turkey \begin{highlights} + \item Did \textit{this} and this is a \textbf{bold} \href{https://example.com}{link}. + \item Did that. + \end{highlights} + \end{twocolentry} @@ -1217,8 +1522,9 @@ \section{One Line Entries} - \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB - + \begin{onecolentry} + \textbf{Pro\textnormal{gram}ming:} Python, C++, JavaScript, MATLAB + \end{onecolentry} diff --git a/tests/testdata/test_latex_to_pdf/classic_empty.pdf b/tests/testdata/test_latex_to_pdf/classic_empty.pdf index c6551d6ff1a7ce74917a60532fb8cff7050e742a..b11c257061c2d369a8c048360ac411018624fb88 100644 GIT binary patch delta 321903 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� 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�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