0

I want a way to create a command (or the equivalent) like

\boxspecifiedheight{8in}{This is some text.}

which uses 8 inches of vertical space. If the sentence was replaced by 5 or 6 sentences, that part of the code would also use 8 inches of text. The goal is to align text on the front and back of a 2-sided page without having to compute what to plug into vspace on my own.

Mark

Sebastiano
  • 54,118
Mark S.
  • 561

1 Answers1

2

Thanks Zarko. I used minipage which has a height option.

\documentclass{article}
\usepackage{pgffor}

\def\commonwidth{1.3in}

\def\front{
\noindent
\begin{minipage}[t][\commonwidth]{\textwidth}
\noindent
This is something.
This is something.
This is something.
This is something.
This is something.
This is something.
This is something.
This is something.
\end{minipage}
}
\def\back{
\noindent
\begin{minipage}[t][\commonwidth]{\textwidth}
\noindent
This is something too.
\end{minipage}
}

%\def\mydata{1,2,3,4,5,6,7,8,9}
\def\mydata{1,2,3,4,5}


\begin{document}


\foreach \x in \mydata { \front }

\newpage

\foreach \x in \mydata { \back }

\newpage

\end{document}
Mark S.
  • 561