更改线条颜色、粗细和线距

更改线条颜色、粗细和线距

我是 LaTeX 新手,正在创建简历。

我添加了一条黑线。

1)但是,我想知道如何指定这条线的颜色和线条粗细?

2) 我想知道如何调整行距?我知道我可以使用。我对和\setspace不太满意。我在寻找介于这两者之间的某个值。我希望能够手动调整行距(是否有可以设置的参数?)。\singlespacingonehalfspacing

3)对于最后一行,我尝试做tab“Sixth Form”,但我不明白为什么乳胶不允许我这样做?

\documentclass[10pt]{article} 
\usepackage[top=0.7in, left=0.3in, bottom=0.0in, right=0.3in]{geometry}
%\usepackage{setspace}
%\singlespacing

\oddsidemargin=0.0in 
\evensidemargin=0.0in 
\textwidth=6.5in 
\marginparwidth=0.5in
\headheight=0pt 
\headsep=0pt 
\textheight=9.0in 
\pagenumbering{gobble}
\begin{document}
\centerline{\huge \bf My Name}
\vspace{2.5pt}
\centerline{$\bullet$ Address $\bullet$ (Country code)phone number}
\centerline{Email}
\noindent{\LARGE \bf Education} \\
{\line(1,0){475}}
\hspace{10in}{Sixth Form } \hfill{Time}
\end{document}

在此处输入图片描述

答案1

您可以使用\setstretch{..}它来设置不同的因素,尽管一般来说,更改字体设计中的基线通常不会导致改进。

其他评论,您加载了geometry包(通常是设置页面尺寸的最佳方式),但然后通过设置较低级别的 LaTeX 参数覆盖了其所有设置:

\oddsidemargin=0.0in 
\evensidemargin=0.0in 
\textwidth=6.5in 
\marginparwidth=0.5in
\headheight=0pt 
\headsep=0pt 
\textheight=9.0in

\centerline{\huge \bf My Name}
\vspace{2.5pt}

\centerline并且\bf实际上不应该在 LaTeX 中使用,它们是纯 TeX 的遗留物(\bf默认情况下甚至没有定义,只是作为兼容层由文档类添加)。每当您更改字体大小时,最好\par在同一范围内包含段落结尾(或空白行),否则您会在小基线上设置大文本。

相似地

\noindent{\LARGE \bf Education} \\

避免使用\\,除非在表格等中。这应该是

{\LARGE\textbf{Education}\par}

\line仅适用于图片模式,我很惊讶它在这里没有给出明确的错误,但显然不是。使用\rule

{\line(1,0){475}}

应该

\noindent\rule{\textwidth}{.4pt}\par

或者改变宽度和颜色

添加

\usepackage{color}

然后

\noindent\textcolor{red}{\rule{\textwidth}{5pt}}\par

相关内容