Code: Select all
\vfill
\columnbreak
So I was hoping someone might have a better way. Maybe it is possible without using columns but somehow limiting text width and right aligning charts, but I don’t know if this could work.
If you think this kind of layout is not really feasible in latex, that would be very useful to know. The reason for trying this is I need to conform with my company’s layout, so I’d be really grateful for any help.
Some sample code below.
Thanks in advance
Aidan
Code: Select all
\documentclass[10.5pt, a4paper]{article}
\usepackage{multicol}
\usepackage[pdftex]{graphicx}
\makeatletter
\newenvironment{tablehere}
{\def\@captype{table}}
{}
\newenvironment{figurehere}
{\def\@captype{figure}}
{}
\makeatother
%this forces the figure to appear in a column, taken from
%http://www.eng.cam.ac.uk/help/tpl/textprocessing/multicol_hint.html
\begin{document}
\begin{multicols}{2}
TEXT OF PAGE 1, LEFT COLUMN, WHICH REFERENCES AFIGURE
..
TEXT OF PAGE 1, LEFT COLUMN, WHICH REFERENCES AFIGURE
\vfill
\columnbreak
\begin{figurehere}
\centering
{\includegraphics[width=\columnwidth]{THEFIGURE}}
\end{figurehere}
\vfill
\pagebreak
TEXT OF PAGE 2, LEFT COLUMN, ..
\end{multicols}
\end{document}