
我找到了一個非常簡潔的履歷模板。問題是我無法調整單列的尺寸,導致頁面兩側浪費了太多空間。我希望“第二行”具有更少的行煞車,也就是說,將“日期”更多地移到左側,並在右側為文字留出更多空間。
我該如何更改此設定?謝謝。
\documentclass[10pt,a4paper]{scrartcl}
\usepackage[LabelsAligned]{currvita} % nice cv style
\usepackage{url}
\usepackage[english]{babel}
\usepackage[nochapters]{classicthesis}
\renewcommand*{\cvheadingfont}{\LARGE\color{Maroon}}
\renewcommand*{\cvlistheadingfont}{\large}
\renewcommand*{\cvlabelfont}{\qquad}
\usepackage[gen]{eurosym}
\begin{document}
\begin{cv}{\spacedallcaps{Title}}
%\pdfbookmark[1]{Pers\"onliche Daten}{PersDat}
\begin{cvlist}{\spacedlowsmallcaps{Section title}}\label{Conferences and Talks}
\item[date] First line
\item[date] Second line Second line Second line Second line Second line Second line Second line Second line Second line Second line Second line Second line Second line Second line
\end{cvlist}
\end{cv}
\end{document}
答案1
確實,正如評論中所建議的那樣,完成了。
\usepackage[left=1.5cm, right=2cm]{geometry}
答案2
使用該geometry
包並\newgeometry{left=3cm,bottom=0.1cm}
在要更改邊距的位置寫下。當你想重置邊距時,你可以寫\restoregeometry
.