简历模板部分修改

简历模板部分修改

链接到我在 Overleaf 上的文本

我当前的代码:

% This is a modified ONE COLUMN version of
% Deedy - One Page Two Column Resume
% LaTeX Template
% Version 1.1 (30/4/2014)
% Debarghya Das (http://debarghyadas.com)
% https://github.com/deedydas/Deedy-Resume
%
% IMPORTANT: THIS TEMPLATE NEEDS TO BE COMPILED WITH XeLaTeX

\documentclass[]{deedy-resume-openfont}
\begin{document}

\namesection{john}{doe}{email | location | website}

\section{Culinary School}
\raggedright

\runsubsection{Extracurriculars}\hfill \location{location | 2019 - 2020}
\begin{tightemize}
    \item tex club
    \item president of gordon ramsay fan club
    \item lorem ipsum
\end{tightemize}
\sectionsep
\runsubsection{Athletics}\hfill \location{ }
\begin{tightemize}
    \item Varsity Dodgeball
\end{tightemize}
\sectionsep

\ 
\end{document}

转换为: 我不要什么

我希望“位置 | 2019-2020”与“烹饪学校”水平对齐,并将“体育”子部分与“课外活动”水平对齐,如下所示:

我想要的是

我该怎么做?我希望这是个合适的提问地点,我对 TeX 还是个菜鸟!再次重申,这是我在 Overleaf 上的代码链接

答案1

OP在这里,我使用小页面回答了我自己的问题:

% This is a modified ONE COLUMN version of
% Deedy - One Page Two Column Resume
% LaTeX Template
% Version 1.1 (30/4/2014)
% Debarghya Das (http://debarghyadas.com)
% https://github.com/deedydas/Deedy-Resume
%
% IMPORTANT: THIS TEMPLATE NEEDS TO BE COMPILED WITH XeLaTeX

\documentclass[]{deedy-resume-openfont}

\begin{document}
\namesection{john}{doe}{email | location | website}
\section{Culinary School} \location{location | 2019 - 2020}
\raggedright
\begin{minipage}[t]{0.66\textwidth}

\runsubsection{Extracurriculars}\hfill
\begin{tightemize}
    \item tex club
    \item president of gordon ramsay fan club
    \item lorem ipsum
\end{tightemize}
\sectionsep
\end{minipage}
\hfill
\begin{minipage}[t]{0.33\textwidth} 
\runsubsection{Athletics}\hfill \location{ }
\begin{tightemize}
    \item Varsity Dodgeball
\end{tightemize}
\sectionsep
\end{minipage}

\ 
\end{document}

从而产生期望结果。\location 元素的格式不允许右对齐,因此我将其添加到标题下方。 在此处输入图片描述

相关内容