GeneralDivide a page into columns of unequal width?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
asgrrr
Posts: 9
Joined: Wed Nov 06, 2019 2:36 am

Divide a page into columns of unequal width?

Post by asgrrr »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Divide a page into columns of unequal width?

Post by Johannes_B »

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.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10322
Joined: Mon Mar 10, 2008 9:44 pm

Divide a page into columns of unequal width?

Post by Stefan Kottwitz »

It's not default LaTeX, but some package may help, such as vwcol:

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}
columns.png
columns.png (116.58 KiB) Viewed 13256 times
It works on a page, as requested, but not for spanning multiple pages.

Stefan
LaTeX.org admin
DavidDaily
Posts: 7
Joined: Thu May 09, 2019 5:56 pm

Divide a page into columns of unequal width?

Post by DavidDaily »

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)
Post Reply