我想删除空格前CV 中表格环境的第一个列条目,以便使其与节标题对齐。
输出如下:
我知道如果没有缩进,它可能看起来有点拥挤,但我需要这个额外的空间:)
到目前为止的代码如下:
\documentclass{resumeGerman}
\usepackage{hyperref,xcolor}
\usepackage{makeidx}
\definecolor{linkcolour}{rgb}{0,0.2,0.6}
\hypersetup{
colorlinks=true,
linkcolor={linkcolour},
urlcolor={linkcolour},
}
\name{John Doe}
\begin{document}
\renewcommand\labelitemi{$\cdot$}
%----------------------------------------------------------------------------------------
% PERSONAL DETAILS SECTION
%----------------------------------------------------------------------------------------
\begin{rSection}{Personal Details}
\begin{tabular}{ @{} >{\bfseries}l @{\hspace{6ex}} l }
Adress & Silk Road 123 \\
& 12345 Silk City \\
Date of Birth & 01.01.1900 \\
Place of Birth & Silk City\\
Phone & (123) 1234 5678 \\
Email & \href{mailto:[email protected]}{[email protected]}
\end{tabular}
\end{rSection}
%----------------------------------------------------------------------------------------
% EDUCATION SECTION
%----------------------------------------------------------------------------------------
\begin{rSection}{Education}
\begin{tabular}{>{\em}rp{13cm}}
Expected 08/2016 & \textbf{Silk City University} \\
& M. Sc. in Silk Science\\
& {\parbox{0.73\textwidth}{
\begin{itemize}
\item Specialization in Silk Fabriques
\item Overall GPA: 5.678
\end{itemize} }}
\end{tabular} \medskip \\
\begin{tabular}{>{\em}rp{13cm}}
09/2011 -- 02/2015 & \textbf{Silk City University} \\
& B. Sc. in Silk Business \\
& {\parbox{0.73\textwidth}{
\begin{itemize}
\item Relevant Coursework: Silk Industry (GPA 4.0/4.0), CRM in Silk Business (3.7), International Silk Trade (4.0)
\item Bachelor Thesis: {\em Are the times of the silk road really over?} (4.0)
\item Overall GPA: 3.7
\end{itemize} }}
\end{tabular} \medskip \\
\begin{tabular}{>{\em}rp{13cm}}
08/2013 -- 12/2013 & \textbf {Silk Road University, India} \\
& Semester Abroad \\
& {\parbox{0.73\textwidth}{
\begin{itemize}
\item Relevant Coursework: Logistics (4.0), Silk Engineering (4.0)
\item Overall GPA: 3.65
\end{itemize} }}
\end{tabular} \medskip \\
\begin{tabular}{>{\em}rp{13cm}}
08/1999 -- 06/2008 & \textbf{Silk City School} \\
& {\parbox{0.73\textwidth}{
\begin{itemize}
\item Degree: High School Diploma
\item Overall GPA: 3.3/4.0
\end{itemize} }}
\end{tabular} \medskip \\
\end{rSection}
%----------------------------------------------------------------------------------------
% WORK EXPERIENCE SECTION
%----------------------------------------------------------------------------------------
\begin{rSection}{Work Experience}
\end{rSection}
\end{document}
感谢您的帮助!
PS 不确定如何在这里提供“resumeGerman”的 .cls 文件,所以如果你们需要的话请告诉我怎么做。如果只关注缩进,也许没有文件也可以。:)
答案1
我有两个建议;但由于我无法访问您的文档类,恐怕我无法验证它们是否有效。
\setlength\parindent{0pt}
在序言中插入指令。修改表格标题行的四个实例
\begin{tabular}{>{\em}rp{13cm}}
以便他们阅读
\begin{tabular}{@{}>{\em}rp{13cm}@{}}
即
@{}
在开头和结尾处插入。这会将插入在环境左侧和右侧边缘的空白量设置tabular
为零。