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 c6551d6..b11c257 100644 Binary files a/tests/testdata/test_latex_to_pdf/classic_empty.pdf and b/tests/testdata/test_latex_to_pdf/classic_empty.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/classic_filled.pdf b/tests/testdata/test_latex_to_pdf/classic_filled.pdf index 5b6660b..781d3ac 100644 Binary files a/tests/testdata/test_latex_to_pdf/classic_filled.pdf and b/tests/testdata/test_latex_to_pdf/classic_filled.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/engineeringresumes_empty.pdf b/tests/testdata/test_latex_to_pdf/engineeringresumes_empty.pdf index dd2e0a0..5ce7a14 100644 Binary files a/tests/testdata/test_latex_to_pdf/engineeringresumes_empty.pdf and b/tests/testdata/test_latex_to_pdf/engineeringresumes_empty.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf b/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf index 684d694..21b5d03 100644 Binary files a/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf and b/tests/testdata/test_latex_to_pdf/engineeringresumes_filled.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf b/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf index 5abdcaa..fb8483f 100644 Binary files a/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf and b/tests/testdata/test_latex_to_pdf/moderncv_empty.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf b/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf index d7d6f48..7939db2 100644 Binary files a/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf and b/tests/testdata/test_latex_to_pdf/moderncv_filled.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/sb2nov_empty.pdf b/tests/testdata/test_latex_to_pdf/sb2nov_empty.pdf index eda02b7..e11d3b7 100644 Binary files a/tests/testdata/test_latex_to_pdf/sb2nov_empty.pdf and b/tests/testdata/test_latex_to_pdf/sb2nov_empty.pdf differ diff --git a/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf b/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf index bfea883..a388117 100644 Binary files a/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf and b/tests/testdata/test_latex_to_pdf/sb2nov_filled.pdf differ