
I am trying to replicate the two column section thing which is used in this pdf
http://www.tedpavlic.com/jobdocs/tpavlic_cv_faculty.pdf
The problem is, everything is indented minus the column section.
http://www.vivid-abstractions.net/downl ... okoll2.pdf (Page 2)
Can you help me? Thanks

Code: Select all
\documentclass[paper=a4, fontsize=11pt,twoside]{scrartcl} % KOMA article
\usepackage[a4paper,pdftex,marginparwidth=30.5mm, marginparsep=1.5mm, margin=25mm]{geometry} % A4paper margins
\setlength{\oddsidemargin}{5mm} % Remove 'twosided' indentation
\setlength{\evensidemargin}{5mm}
\usepackage{color,hyperref}
\usepackage{fancyhdr}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[ngerman]{babel}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage{amsmath,amsfonts,amsthm,amssymb}
\usepackage{graphicx}
\usepackage{calc}
\setlength{\parindent}{0in}
\usepackage[shortlabels]{enumitem}
\reversemarginpar
% ------------------------------------------------------------------------------
% Indented Column Section
% ------------------------------------------------------------------------------
\renewcommand{\section}[1]{\pagebreak[3]%
\vspace{1.3\baselineskip}%
\phantomsection\addcontentsline{toc}{section}{#1}%
\noindent\llap{\scshape\smash{\parbox[t]{\marginparwidth}{\hyphenpenalty=10000\raggedright #1}}}%
\vspace{-\baselineskip}\par}
% ------------------------------------------------------------------------------
% Definitions
% ------------------------------------------------------------------------------
\newcommand{\HRule}[1]{\rule{\linewidth}{#1}} % Horizontal rule
\makeatletter % Title
\def\printtitle{%
{\centering \@title\par}}
\makeatother
\makeatletter % Author
\def\printauthor{%
{\centering \large \@author}}
\makeatother
% ------------------------------------------------------------------------------
% Metadata
% ------------------------------------------------------------------------------
\title{ \normalsize \textsc{Protokoll} % Subtitle of the document
\\[2.0cm] % 2cm spacing
\HRule{0.5pt} \\ % Upper rule
\LARGE \textbf{\uppercase{Molarbiologisches Grundpraktikum für Bioinformatiker}} % Title
\HRule{2pt} \\ [0.5cm] % Lower rule + 0.5cm spacing
\normalsize \today % Todays date
}
\author{
Sebastian Harz, Martin Hoffmann, Patrick Lüdeke\\
Friedrich-Schiller-Universität Jena\\
Gruppe 2 - WS 2011/2012\\
}
\begin{document}
% ------------------------------------------------------------------------------
% Title Page
% ------------------------------------------------------------------------------
\thispagestyle{empty}
\printtitle
\vfill
\begin{figure}[hbtp]
\centering
\includegraphics[width=220px]{ujl.png}
\end{figure}
\vfill
\printauthor
% ------------------------------------------------------------------------------
% First Page
% ------------------------------------------------------------------------------
\newpage
\pagestyle{fancy}
\lhead{02.04.2012}
\chead{}
\rhead{\bfseries Überprüfung der Pipettiergenauigkeit}
\lfoot{Sebastian Harz, Martin Hoffmann, Patrick Lüdeke - Gruppe 2}
\cfoot{}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\section{Research Interests}
\textbf{Complex adaptive systems with applications in control systems
engineering and behavioral science:} distributed algorithms, agent-based
modeling, hybrid dynamic systems, amorphous computing, autonomous
systems, control, communications, verification, cooperation,
optimization, game theory, resource allocation, parallel computation,
robotics, behavioral ecology, engineering education, bio-mimicry and
bio-inspiration
\end{document}