我正在编写我的简历,为此我使用了以下构造之一:
\documentclass[letterpaper,9pt]{article}
\newlength{\outerbordwidth}
\usepackage[empty]{fullpage}
\usepackage{color}
\usepackage{hyperref}
\definecolor{mygrey}{gray}{0.85}
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}
\usepackage{tabularx}
\setlength{\paperwidth}{8.5in}
\setlength{\hoffset}{3pt}
\addtolength{\oddsidemargin}{-0.6in}
\addtolength{\topmargin}{-.7in}
\addtolength{\textheight}{1.0in}
\setlength{\textwidth}{7.488in}
\newcommand{\ressubheading}[4]{\vspace{-.12cm}\hspace{-5pt}
\begin{tabular*}{7.18in}{l@{\extracolsep{\fill}}r}
\textbf{#1} & #2 \\
#3 & #4 \\
\end{tabular*}\vspace{-0.2cm}}
\begin{document}
\begin{itemize}
\item
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\end{itemize}
\end{document}
该命令\ressubheading
帮助我定义一个表格,我将在其中写入我的凭据。但是,我需要逐项列出这些表格,而在这样做时,提供的项目符号\item
会挂在两行的中间。这看起来有点奇怪。我希望项目符号位于第一行的前面,即在给出的示例中位于“研究生院名称”的前面。以下是显示问题的图像:
有什么可以做的吗?非常感谢您的帮助!
答案1
除了使用奇数值或反复试验的长度进行调整外,还可以使用常规的段落条目:
\documentclass[letterpaper]{article}
\usepackage[empty]{fullpage}% http://ctan.org/pkg/fullpage
\newcommand{\ressubheading}[4]{%
\item\textbf{#1} \hfill #2\null\\
#3 \hfill #4%
}
\begin{document}
\begin{itemize}
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\ressubheading{Name of Grad School}{City}{Major}{2010 -- 2012}
\end{itemize}
\end{document}
请注意,标准文档类不支持9pt
字体。此外,最好使用以下方法设置文档布局更改geometry
。