Is it possible to divide a page into columns of unequal width?
I searched for this a long time ago, then gave up.
But I'm back!!!1
General ⇒ Divide a page into columns of unequal width?
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Divide a page into columns of unequal width?
No, this is a weak spot of LaTeX.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
Divide a page into columns of unequal width?
It's not default LaTeX, but some package may help, such as
vwcol:
It works on a page, as requested, but not for spanning multiple pages.
Stefan

Code: Select all
\documentclass{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{microtype}
\usepackage{vwcol}
\begin{document}
\begin{vwcol}[widths = {0.6,0.4}, sep = 0.8cm,
justify = flush, rule = 0pt, indent = 1cm]
\blindtext[5]
\end{vwcol}
\end{document}
Stefan
LaTeX.org admin
-
- Posts: 7
- Joined: Thu May 09, 2019 5:56 pm
Divide a page into columns of unequal width?
If you just want to do it on one page, you can use minipages and specify what percentage of
\textwidth
you want each side to take up. I did it here: https://daviddaily.dev/david/wod-charac ... ex#L19-L35 (Resultant PDF: https://files.daviddaily.dev/LaTeX/WoD/David.pdf)