I would like to make a PDF file with side-by-side two up printing. I have tried the packages 2up followed by 2up. The content is as desired but the PDF is on a portrait orientation instead of landscape and crops the content on the page on the right hand side. Here is the code and PDF file it generates:
Code: Select all
\documentclass[12pt, a4paper, fleqn]{article}
\usepackage{fullpage}
\usepackage{2up}
\usepackage{twoup}
\begin{document}
\begin{enumerate}
\item Question 1
\newpage
\item Question 2
\newpage
\item Question 3
\newpage
\item Question 4
\end{enumerate}
\end{document}