첫 번째 테이블 열 앞의 들여쓰기 제거

첫 번째 테이블 열 앞의 들여쓰기 제거

공간을 없애고 싶어요~ 전에섹션 헤더와 정렬하기 위해 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}

당신의 도움을 주셔서 감사합니다!

추신: 여기에서 "resumeGerman"에 대한 .cls 파일을 어떻게 제공할 수 있는지 잘 모르겠습니다. 필요한 경우 어떻게 해야 하는지 알려주세요. 들여쓰기에만 집중한다면 파일 없이 가능할 수도 있습니다. :)

답변1

두 가지 제안이 있습니다. 유감스럽게도 귀하의 문서 클래스에 액세스할 수 없기 때문에 작동하는지 확인할 수 없습니다.

  • \setlength\parindent{0pt}프리앰블에 명령어를 삽입합니다 .

  • 표 형식 머리글 줄의 네 인스턴스를 수정합니다.

    \begin{tabular}{>{\em}rp{13cm}}
    

    그들이 읽을 수 있도록

    \begin{tabular}{@{}>{\em}rp{13cm}@{}}
    

    즉, @{}시작과 끝 부분에 삽입합니다. 그러면 환경의 왼쪽 및 오른쪽 가장자리에 삽입되는 공백의 양이 tabular0으로 설정됩니다.

관련 정보