我实际上正在处理 Friggeri CV。此模板使用 friggeri-cv.cls 作为类文件。在此文件中,您可以找到自定义最终 CV 所需的一切。
CV 分为以下几个部分:结构、列表环境、侧块、超级侧块、超级侧新页面、参考书目。结构和列表环境实际上使用表格包。
我想更改结构部分的左缩进,将整个部分移到左侧。下面是我试图解释的图片:
如果有人能帮助我,我将非常感激你们。
谢谢你,R。
编辑:提供 MWE 和输出
\documentclass[]{friggeri-cv}
\begin{document}
\header{NAME}{SURNAME}{JOB TITLE}
\begin{textblock*}{300pt}(30pt, 0.75pt)
\includegraphics[width=0.325\textwidth]{photo/picture}
\end{textblock*}
%-----------------------------------------------------------------------------
% INTERESTS SECTION
%-----------------------------------------------------------------------------
\section{interests}
\textbf{professional:} bus taking, wall jumping \\
\textbf{personal:} donuts eating
%-----------------------------------------------------------------------------
% EDUCATION SECTION
%-----------------------------------------------------------------------------
\section{education}
\begin{entrylist}
%------------------------------------------------
\entry
{2009--2011}
{Master's Degree {\normalfont DEGREE} {\small \textcolor{gray}{4/4}}}
{UNIVERSITY}
{\emph{{\small TITLE}}}
%------------------------------------------------
\entry
{2005--2009}
{Bachelor's Degree {\normalfont DEGREE} {\small \textcolor{gray}{4/4}}}
{UNIVERSITY}
{\emph{{\small TITLE}}}
%------------------------------------------------
\end{entrylist}
%-----------------------------------------------------------------------------
% WORK EXPERIENCE SECTION
%-----------------------------------------------------------------------------
\section{experience}
\begin{entrylist}
%------------------------------------------------
\entry
{2016}
{Office}
{New York}
{\emph{\textit{Post-lauream} internship to achieve} \\
Learned how..
\begin{itemize}
\item Able to
\item Able to
\item Able to
\end{itemize}}
%------------------------------------------------
\entry
{2013}
{Office}
{Boston}
{\emph{\textit{Post-lauream} internship regarding the} \\
Obtained tangible improvements in..
\begin{itemize}
\item Able to
\item Able to
\item Able to
\end{itemize}}
\end{entrylist}
%-----------------------------------------------------------------------------
% AWARDS APPLICATIONS
%-----------------------------------------------------------------------------
\section{applications}
\begin{entrylist}
%------------------------------------------------
\entry
{2012}
{Achieved scholarship for}
{ORGANIZATION}
{description}
%------------------------------------------------
\end{entrylist}
\end{document}
第二次编辑:添加 .cls 的一部分以实现表格间距
%%%%%%%%%%%%%%%%%%%%
% List environment %
%%%%%%%%%%%%%%%%%%%%
\setlength{\tabcolsep}{0pt}
\newenvironment{entrylist}{%
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}}ll}
}{%
\end{tabular*}
}
\renewcommand{\bfseries}{\headingfont\color{headercolor}}
\newcommand{\entry}[5]{%
#1&\parbox[t]{12.5cm}{%
\textbf{#2}%
\hfill%
{\footnotesize\addfontfeature{Color=lightgray} #3}\\%
#4\vspace{\parsep}%
}\\}
我发布此代码是因为,查看我添加的最后一张图片,我想修改(增加)之间的空白硕士学位 4/4和大学。我认为我需要修改 tabular*{}{} 参数。我不知道该怎么做。
再次感谢,R。