手动指定边距宽度

手动指定边距宽度

我正在尝试用 LaTeX 写简历。我使用的是网上找到的模板。但是边距太大了。我需要顶部和底部边距只有 1 英寸。LaTeX 代码是:

\documentclass[a4paper, 10pt]{scrartcl}   
\usepackage{soul}
\usepackage{scrpage2} 
\usepackage{titlesec} 
\usepackage{marvosym}
\usepackage{tabularx,colortbl}
\usepackage{xcolor}
%\usepackage{varwidth}  
\titleformat{\section}{\large\scshape\raggedright}{}{0em}{}[\titlerule]
\pagestyle{scrheadings}  
\renewcommand{\headfont}{\normalfont\rmfamily\scshape}
% add the symbols for email and phone contact data
\cofoot{\so{Liefdestraat, 7 - 1234LI, Amsterdam, Nederland}\\ 
\so{ {\Large\Letter} [email protected]\ {\Large\Telefon} +31 (0)6 12345678}}
\begin{document}
...

答案1

虽然 KOMA-Script 课程建议使用该typearea包,但仍可以从中受益geometry

\usepackage[margin=1in]{geometry}

将在四边设置一英寸的边距。

相关内容