
quiero quitar el espacioantesla primera entrada de columna de un entorno de tabla en un CV, para alinearla con el encabezado de la sección.
El resultado tiene el siguiente aspecto:
Soy consciente de que puede parecer algo abarrotado sin la sangría, pero necesito este espacio adicional :)
El código hasta ahora es el siguiente:
\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}
¡Gracias por tu ayuda!
PD: No estoy seguro de cómo podría proporcionar el archivo .cls para "currículum alemán" aquí, así que déjenme saber cómo hacerlo si lo necesitan. Podría ser posible sin el archivo, si nos centramos sólo en la sangría. :)
Respuesta1
Tengo dos sugerencias; Me temo que no puedo verificar que funcionen porque no tengo acceso a su clase de documento.
Inserte la instrucción
\setlength\parindent{0pt}
en el preámbulo.Modificar las cuatro instancias de la línea de encabezado tabular.
\begin{tabular}{>{\em}rp{13cm}}
para que lean
\begin{tabular}{@{}>{\em}rp{13cm}@{}}
es decir, insertar
@{}
al principio y al final. Esto establecerátabular
en cero la cantidad de espacios en blanco que se insertan en los bordes izquierdo y derecho del entorno.