我正在尝试利用该res
课程来制作我的简历。
我遇到的问题是页面边框。我该如何设置 acc
这是我的.tex
文件的样子
%------------------------------------------------------------------
% PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%------------------------------------------------------------------
\documentclass[margin, centered, 11pt]{res}
\topmargin=-0.5in
\oddsidemargin -.5in
\evensidemargin -.5in
\textwidth=6.5in
\itemsep=0in
\parsep=0in
\newsectionwidth{1in}
\usepackage[pdftex]{graphicx}
\usepackage{enumitem}
\usepackage{wrapfig}
\usepackage{helvet}
\usepackage[colorlinks = true,
linkcolor = black,
urlcolor = black,
citecolor = black,
anchorcolor = black]{hyperref}
\setlength{\textwidth}{6.5in} % Text width of the document
\setlength{\textheight}{720pt}
\newcommand{\ts}{\textsuperscript}
\begin{document}
%------------------------------------------------------------------
% ACHIEVEMENT SECTION
%------------------------------------------------------------------
\section{Achievements \& Awards}
\begin{itemize}[leftmargin=*]
\item \href{https://plino.herokuapp.com/}{Plino} got featured on \href{https://www.producthunt.com/tech/plino}{\emph{Product Hunt}} in \textbf{tech} genre.
\item Senior Member of the College Coding Club, \textbf{Code Rumble}
\end{itemize}
\end{resume}
\end{document}
我得到了这样的
我想要做的是将左右边框(如果是这样称呼的话)均匀地移到每一侧,这样就不会出现这样的重叠。任何建议都会非常有用。
编辑
我解决这个问题的一个方法是
\newsectionwidth{1.15in}
和
\moveleft\hoffset\vbox{\hrule width 19.5cm height 0.5pt}
但显然一定有更好的方法