I am trying to make simple two sided flash cards of quotations with one side being the reference and the other side containing the quote. In order to print the cards, they need to be landscape. My code, however, is generating extra blank pages, and the text does not appear to be centered vertically on the page as intended.
My questions: What is causing the extra pages and how do I fix it? What adjustments do I need to make for the text to center vertically on the page?
\documentclass[11pt]{article}
\pagestyle{empty}
\setlength\parindent{0pt}
\usepackage[paperwidth=126mm,
paperheight=75mm,
landscape,
left=0.50in,
right=0.50in,
top=0.50in,
bottom=0.50in]{geometry}
\usepackage{ragged2e}
\usepackage{lscape}
\linespread{1.3}
\newcommand{\myref}[1]{
\begin{landscape}
\topskip0pt
\vspace*{\fill}
\centering\Huge{#1}
\vspace*{\fill}
\end{landscape}
\newpage
}
\newcommand{\myquote}[1]{
\begin{landscape}
\topskip0pt
\vspace*{\fill}
\justify\normalsize{#1}
\vspace*{\fill}
\end{landscape}
}
\begin{document}
\myref{John 3:16}
\myquote{For God so loved the world, that he gave his only begotten Son,
that whosoever believeth in him should not perish, but have everlasting
life.}
\end{document}
flashcarddocument class? There are some examples here and here. – Fran Jan 06 '16 at 11:57flashcardclass, but it seems more designed for flashcards of formulae and not for quotations. – BrianWilson Jan 07 '16 at 00:44