GeneralVertical centering within the Parallel environment

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Heresy
Posts: 12
Joined: Mon May 21, 2012 7:24 pm

Vertical centering within the Parallel environment

Post by Heresy »

Hello everyone,

Using the Parallel environment, I would like to vertically center a sentence (Left 2) in the left column to match two sentences (Right 2a and Right 2b) in the right column. The LaTeX file and corresponding PDF output are attached. Here is the current MWE:

Code: Select all

\documentclass[a4paper,11pt,twoside]{article}

\usepackage[top=1cm,bottom=1cm,left=1.3cm,right=1.3cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage{inputenc}
\usepackage{parskip}
\usepackage{parallel}
\usepackage{lipsum}

\begin{document}

\thispagestyle{empty}
\pagestyle{empty}

\vspace*{5cm}

\begin{Parallel}{2in}{6.0in}
	\ParallelLText{
		Left 1 \\
		Left 2
	}
	\ParallelRText{
		Right 1: Lorem ipsum dolor sit amet, consectetuer adipiscing elit. \\
		$\bullet$ Right 2a: Aenean commodo ligula eget dolor. Aenean massa. \\
		$\bullet$ Right 2b: Nullam dictum felis eu pede mollis pretium. Integer tincidunt.
	}
\end{Parallel}

\end{document}
I've tried so far \vspace*{1mm}, the minipage environment, the parbox environment and \pbox[b]{\textwidth}{Left 2}. None of them seem to be working.

Thank you in advance for your help.
Attachments
parallel.pdf
(24.4 KiB) Downloaded 375 times
parallel.tex
(649 Bytes) Downloaded 366 times
TeX Live 2012 and Texmaker 4.0.2

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply