无法设置简历页眉的边距

无法设置简历页眉的边距

我正在尝试用 LaTeX 排版我的简历,并创建了一个我非常满意的标题。但是,现在我开始填写其余信息,我为将标题放在正确位置而设置的边距会干扰文本。

我想知道是否有更好的方法来格式化我的页眉,这样我就不必对页边距进行太多调整。当我尝试添加文本时,它要么出现在页面左侧,要么\flushleft出现在页面中心附近。

这是我的代码:

\documentclass[9pt]{article}

\usepackage{hyperref,graphicx, wrapfig,anyfontsize, color, amsmath}
\usepackage[usenames,dvipsnames]{xcolor}

\topmargin = -45pt
\hoffset= -70pt
\voffset=-15pt
\textwidth = 550pt
\textheight = 685pt
\headheight = 0pt
\headsep = 0pt
\oddsidemargin = -20pt


\begin{document}
\begin{wrapfigure}{i}{0.15\textwidth}
\begin{picture}(90,70)
\hspace{20mm}
\includegraphics[clip=true, trim=0 75 76 0, scale = .7]{FHS_Ship_Wheel.jpg}
\linethickness{0.75mm}
\put(0,0){\line(0,1){65}}
\put(0,0){\line(-1,0){65}}
\put(0,0){\line(1,0){450}}
\end{picture}
\end{wrapfigure}
\noindent
\\
\\
\vspace{-11.5mm}
\hspace{115mm}
%Upper right-hand Corner
\begin{tabular} {lc}
\text{Address Line 1} & \textcolor{Gray}{ Address}\\
\text{Address Line 2 }& \textcolor{Gray}{}\\
\href{[email protected]}{Email Address} & \textcolor{Gray}{ Email}\\
$\left(555\right)555 -5555$ & \textcolor{Gray}{ Cell} \\
\end{tabular}
\\
\vspace{-8mm}
{\fontsize{45}{5.4}
\selectfont 
\hspace{2mm} John Q. Public}

\end{document}

因为我无法发布我正在使用的图像,所以可以在这里找到:

http://en.wikipedia.org/wiki/File:FHS_Ship_Wheel.jpg

我可能想到的一些想法是,要么将所有标题包装成一个图形或图像,这样我就可以将其放在顶部,要么使用包来格式化标题,这样我就可以像我所做的那样将其与图像旁边的标题一起布局。提前感谢您的任何帮助或建议。

答案1

您不需wrapfig要这样做。只需构建一系列框即可。对于边距,我在所有边上都使用了 1cm,请进行调整以适应。

\documentclass{article}
\usepackage[margin=1cm,showframe]{geometry}

\usepackage{hyperref,graphicx,anyfontsize, color, amsmath}
\usepackage[usenames,dvipsnames]{xcolor}


\begin{document}
\noindent\begin{picture}(65,65)
\put(0,0){\includegraphics[clip, trim=0 75 76 0,width=65pt]{FHS_Ship_Wheel.jpg}}
\linethickness{0.75mm}
\put(65,0){\line(0,1){65}}
\put(0,0){\line(1,0){65}}
\end{picture}\hfill
{\fontsize{45}{0}\selectfont John Q. Public}\hfill
\begin{tabular}[b]{@{}lc@{}}
\text{Address Line 1} & \textcolor{Gray}{ Address}\\
\text{Address Line 2 }& \textcolor{Gray}{}\\
\href{[email protected]}{Email Address} & \textcolor{Gray}{Email}\\
(555)\,555-5555 & \textcolor{Gray}{Cell} \\
\end{tabular}\par
\smallskip
\hrule height .375mm depth .375mm

\end{document}

细线是通过showframe选项绘制的,您在使用它对页面参数进行微调后将删除它。

在此处输入图片描述

相关内容