http://www.tedpavlic.com/post_resume_cv ... xample.php
This particular example modifies the margins so that the section titles will go in the left margins.
Here is a minimal example that illustrates the problem that I am having:
Code: Select all
\documentclass[11pt]{article}
\usepackage{calc}
\usepackage[breaklinks]{hyperref}
\usepackage{fancyhdr}
\reversemarginpar
\usepackage[paper=letterpaper,
marginparwidth=1.2in,
marginparsep=.05in,
margin=1in,
includemp]{geometry}
\setlength{\parindent}{0in}
\pagestyle{fancy}
\lhead{{\Large \textbf{Bat Man}}}
\renewcommand{\section}[2]%
{\pagebreak[2]\vspace{1.3\baselineskip}%
\phantomsection\addcontentsline{toc}{section}{#1}%
\hspace{0in}%
\marginpar{
\raggedright \scshape #1}#2}
\begin{document}
\section{Contact Information}
Bat Cave, Gotham City
\newpage
\section{Favorite Buddies}
Robin and Bat Girl
\end{document}
The example that I started to mimic uses the following code to accomplish what I am looking for:
Code: Select all
\newcommand{\makeheading}[1]%
{\hspace*{-\marginparsep minus \marginparwidth}%
\begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
{\large \bfseries #1}\\[-0.15\baselineskip]%
\rule{\columnwidth}{1pt}%
\end{minipage}}
Thanks in advance for any help!