最初のテーブル列の前のインデントを削除する

最初のテーブル列の前のインデントを削除する

スペースを削除したい前にセクション ヘッダーに合わせるために、履歴書内のテーブル環境の最初の列エントリ。

出力は次のようになります。ここに画像の説明を入力してください

インデントがないと少し混雑して見えるかもしれませんが、この余分なスペースが必要なのです :)

これまでのコードは次のとおりです。

\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

2 つの提案がありますが、ドキュメント クラスにアクセスできないため、それらが機能するかどうかを確認できません。

  • \setlength\parindent{0pt}プリアンブルに指示を挿入します。

  • 表形式のヘッダー行の4つのインスタンスを変更します

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

    彼らが読むように

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

    つまり、@{}先頭と末尾に挿入します。これにより、環境の左端と右端に挿入される空白の量がtabularゼロに設定されます。

関連情報