
Quero remover o espaçoantesa primeira entrada de coluna de um ambiente de tabela em um CV, para alinhá-la com o cabeçalho da seção.
A saída é a seguinte:
Estou ciente de que pode parecer um pouco lotado sem o recuo, mas preciso desse espaço extra :)
O código até agora é o seguinte:
\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}
Obrigado pela ajuda!
PS Não tenho certeza de como poderia fornecer o arquivo .cls para "resumeGerman" aqui, então deixe-me saber como fazê-lo se vocês precisarem. Pode ser possível sem o arquivo, focando apenas no recuo. :)
Responder1
Tenho duas sugestões; Receio não poder verificar se funcionarão, pois não tenho acesso à sua classe de documento.
Insira a instrução
\setlength\parindent{0pt}
no preâmbulo.Modifique as quatro instâncias da linha do cabeçalho tabular
\begin{tabular}{>{\em}rp{13cm}}
para que eles leiam
\begin{tabular}{@{}>{\em}rp{13cm}@{}}
ou seja, insira
@{}
no início e no final. Isso definirátabular
como zero a quantidade de espaços em branco inseridos nas bordas esquerda e direita do ambiente.