Newsgroups: comp.text.tex Date: 1995/10/08
> So what I want to do is to write my appendices 2 to a page (landscape > and 2 columns). > Does anyone know of a good package(s) I can use to do this?
I think you could do it with the help of the package 'portland.sty' and 'multicol.sty'. You would be able to find them at any CTAN sites. A simple example would look like this:
\documentclass{article}
\usepackage{portland}
\usepackage{multicol}
\begin{document}Here, one-column portrait text.
\begin{landscape}
\begin{multicols}{2}Here, two-column landscape text.
\end{multicols}
\end{landscape}\end{document}ZxZ