Have this code that generate an aside section:
\RequirePackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
\newenvironment{aside}{%
\let\oldsection\section
\renewcommand{\section}[1]{
\par\vspace{\baselineskip}{\Large\headingfont\color{headercolor} ##1}
}
\begin{textblock}{3.6}(1.5, 4.33)
\begin{flushright}
\obeycr
}{%
\restorecr
\end{flushright}
\end{textblock}
\let\section\oldsection
}
Works well but i want to increase the interline in the text inside aside section...
Have tried to insert after \obeycr command this line:
\par\vspace{.25\parskip}%
but change the interline between aside sections, not on text lines inside the sections.
This is the .tex source
\begin{aside}
\section{info}
Homer J. Simpson
123 Fake Street
Springfield, NJ 08105-442
555-966-5786
\href{mailto:homer@simpson.com}{homer@simpson.com}
\end{aside}

I need to increase interline between andress and phone number, and from phone number and email link.


:-)) – egreg Oct 9 '12 at 16:23:-)– egreg Oct 9 '12 at 16:54