
我想刪除空格前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
零。