【问题标题】:laTex cv currvita乳胶 cv currvita
【发布时间】:2016-01-20 12:26:48
【问题描述】:

我找到了这个模板,我想修改两件事,但我尝试的所有方法都不起作用:

  • 我希望在显示我的名字之前有更多的白色垂直空间,因为它现在离顶部太近了
  • 我希望经验文本 (blablablablabla..) 更宽,从而减少左右边距

关于如何修改此模板的任何想法? 谢谢

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Classicthesis-Styled CV
% LaTeX Template
% Version 1.0 (22/2/13)
%
% This template has been downloaded from:
% http://www.LaTeXTemplates.com
%
% Original author:
% Alessandro Plasmati
%
% License:
% CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

%----------------------------------------------------------------------------------------
%   PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------

\documentclass{scrartcl}

\reversemarginpar % Move the margin to the left of the page 

\newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}} % New command defining the margin text style
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
\usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
\usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document

\renewcommand{\cvheadingfont}{\hspace{3.5cm}\LARGE\color{Maroon}} % Font color of your name at the top

\usepackage{hyperref} % Required for adding links and customizing them
\hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors

\newlength{\datebox}\settowidth{\datebox}{Spring 2011} % Set the width of the date box in each block

\newcommand{\NewEntry}[3]{\noindent\hangindent=2em\hangafter=0 \parbox{\datebox}{\small \textit{#1}}\hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here: #1 is the left margin, #2 is the italic date field and #3 is the position/employer/location field
\vspace{0.3em}} % Add some white space after each new entry 

% 
\newcommand{\Description}[1]{\hangindent=1em\hangafter=0\noindent\raggedright\footnotesize{#1}\par\normalsize\vspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here


%----------------------------------------------------------------------------------------
\date{} % Don't print the date
\begin{document}
\thispagestyle{empty} % Stop the page count at the bottom of the first page

%----------------------------------------------------------------------------------------
%   CONTACT INFORMATION
%----------------------------------------------------------------------------------------

\begin{cv}{\spacedallcaps{Mario Rossi}}\vspace{1.8em} % Your name

\noindent\spacedlowsmallcaps{Contact Information}
\vspace{0.1em}
\hrule
\vspace{1em}

\NewEntry{Address}{Salita del carro, L'isola che non c'è} % Address


\NewEntry{Email}{\href{mailto:name@gmail.com}{name@gmail.com}} % Email address

\NewEntry{Linkedin}{\href{http://it.linkedin.com/pub/....}{http://it.linkedin.com/...../}} % Linkedin

\NewEntry{Phone}{+39 333\ \ $\cdotp$\ \ 11111111} % Phone number


%\vspace{1em} % Extra white space between the personal information section and goal
%\noindent\spacedlowsmallcaps{Goal}\vspace{1em} % Goal heading, could be used for a quotation or short profile instead

%\Description{Gain fundamental experience in my area of interest and expertise.}\vspace{2em} % Goal text

%----------------------------------------------------------------------------------------
%    EXPERIENCE
%----------------------------------------------------------------------------------------
\vspace{0.6em}% Extra space between major sections
\noindent\spacedlowsmallcaps{Experience}
\vspace{0.1em}
\hrule
\vspace{1em}
%------------------------------------------------


\NewEntry{}{ \textsc{Somewhere,\textit{ City} }}

\Description{\MarginText{July - December 2015}blablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablablabla\\ }

%----------------------------------------------------------------------------------------

\end{cv}
\end{document}

【问题讨论】:

    标签: templates latex resume


    【解决方案1】:

    我是这样解决您的两个要求的:

    1. 插入一个不可见的垂直支柱作为\cvheadingfont 的一部分。我使用了\rule{0pt}{100pt},但您可以调整(增加/减少)100pt 的值以向上/向下移动内容。

    2. 将文档类切换为使用默认的article 类,因为似乎不需要使用KOMA-script。当使用geometry 更改页面布局/几何形状时,这也允许易于使用。您可以根据需要调整leftright 边距。

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    % Classicthesis-Styled CV
    % LaTeX Template
    % Version 1.0 (22/2/13)
    %
    % This template has been downloaded from:
    % http://www.LaTeXTemplates.com
    %
    % Original author:
    % Alessandro Plasmati
    %
    % License:
    % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/)
    %
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    %----------------------------------------------------------------------------------------
    %   PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
    %----------------------------------------------------------------------------------------
    
    \documentclass{article}
    
    \reversemarginpar % Move the margin to the left of the page 
    
    \newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}} % New command defining the margin text style
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
    \usepackage[english,italian]{babel}
    \usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
    \usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document
    \usepackage{lipsum}
    
    \renewcommand{\cvheadingfont}{%
      \rule{0pt}{100pt}%
      \centering\LARGE\color{Maroon}} % Font color of your name at the top
    
    \usepackage{hyperref} % Required for adding links and customizing them
    \hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors
    
    \newlength{\datebox}\settowidth{\datebox}{Spring 2011} % Set the width of the date box in each block
    
    \newcommand{\NewEntry}[3]{%
      \noindent\hangindent=2em\hangafter=0
      \parbox{\datebox}{\small \textit{#1}}\hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here:
        % #1 is the left margin,
        % #2 is the italic date field and
        % #3 is the position/employer/location field
      \vspace{0.3em}} % Add some white space after each new entry 
    
    % 
    \newcommand{\Description}[1]{%
      \hangindent=1em\hangafter=0
      \noindent\raggedright\footnotesize #1\par
      \normalsize\vspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here
    
    
    \usepackage[left=100pt,right=2cm]{geometry}
    
    %----------------------------------------------------------------------------------------
    \date{} % Don't print the date
    \begin{document}
    \thispagestyle{empty} % Stop the page count at the bottom of the first page
    
    %----------------------------------------------------------------------------------------
    %   CONTACT INFORMATION
    %----------------------------------------------------------------------------------------
    
    \begin{cv}{\spacedallcaps{Mario Rossi}}\vspace{1.8em} % Your name
    
    \noindent\spacedlowsmallcaps{Contact Information}
    \vspace{0.1em}
    \hrule
    \vspace{1em}
    
    \NewEntry{Address}{Salita del carro, L'isola che non c'è} % Address
    
    \NewEntry{Email}{\href{mailto:name@gmail.com}{name@gmail.com}} % Email address
    
    \NewEntry{Linkedin}{\href{http://it.linkedin.com/pub/....}{http://it.linkedin.com/...../}} % Linkedin
    
    \NewEntry{Phone}{+39 333\ \ $\cdotp$\ \ 11111111} % Phone number
    
    
    %\vspace{1em} % Extra white space between the personal information section and goal
    %\noindent\spacedlowsmallcaps{Goal}\vspace{1em} % Goal heading, could be used for a quotation or short profile instead
    
    %\Description{Gain fundamental experience in my area of interest and expertise.}\vspace{2em} % Goal text
    
    %----------------------------------------------------------------------------------------
    %    EXPERIENCE
    %----------------------------------------------------------------------------------------
    \vspace{0.6em}% Extra space between major sections
    \noindent\spacedlowsmallcaps{Experience}
    \vspace{0.1em}
    \hrule
    \vspace{1em}
    %------------------------------------------------
    
    
    \NewEntry{}{\textsc{Somewhere,\textit{City}}}
    
    \Description{\MarginText{July - December 2015}\lipsum[1]}
    
    %----------------------------------------------------------------------------------------
    
    \end{cv}
    \end{document}
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2015-01-20
      • 2010-10-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多