I'm using the multicol package for my columns. So far, I have \setlength\columnsep{10pt} in the preamble to set the default column separation. But for one particular page, I'd like to set the columnsep to 30pt.
I wasn't able to get it to work by inserting a new \setlength at the start of the page.
Here's an example:
\documentclass{article}
\usepackage{blindtext}
\usepackage{multicol}
\setlength\columnsep{10pt} % This is the default columnsep for all pages
\begin{document}
\begin{multicols*}{2}
\blindtext
\newpage
\setlength\columnsep{30pt} % I want the columnsep to be wider only on this page. Right now, nothing happens. The default 10pt is still being used.
\blindtext
\columnbreak
\blindtext
\newpage
\blindtext
\end{multicols*}
\end{document}
Any help would be appreciated.
\setlength? Nothing? Error message? Weird output? The\columnsepchanged for the next page? For all following pages? Please provide a minimal working example (MWE) that shows what you have tried so far. – Qrrbrbirlbel Mar 12 '13 at 07:19