如何才能使水平线不进入右边距。
它看上去并不像我所拥有的那么对称。
理想情况下,我希望水平线与页面两侧的距离相同。
谢谢!
\documentclass[margin]{res}
\begin{document}
\indent{\textbf{\large{NAME}\\
{\rule{\paperwidth}{1.5pt}}
\begin{resume}
\vspace{-8mm}
\section{Contact Information}{ Avenue \\ CITY\\ COUNTRY \\ Mobile: +1 (342) 333-3333\\Email: [email protected]}
\end{resume}
\end{document}
答案1
应\paperwidth
替换为,\resumewidth
并删除“奇怪”一词\vspace{-8mm}
。
警告:res.cls 相当老了(2001)!!!
\documentclass[margin]{res}
\begin{document}
\indent{\textbf{\large{NAME}\\
{\rule{\resumewidth}{1.5pt}}}}%
\begin{resume}
% \vspace{-8mm}
\section{Contact Information}{ Avenue \\ CITY\\ COUNTRY \\ Mobile: +1 (342) 333-3333\\Email: [email protected]}
\end{resume}
\end{document}