Page LayoutFlyer with 4 columns

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
maiconfr
Posts: 1
Joined: Mon Feb 11, 2019 1:21 pm

Flyer with 4 columns

Post by maiconfr »

Hi everyone,

I need a flyer with 4 columns, and the flux of text must be like in the image below.
First I used the flyer package, but I only get 3 columns when I used.
Second I tried to use flowfram package, it works, but I needed change the order of pages to be the like I desire.
Here is my code using flowfram package:

Code: Select all

\documentclass[landscape]{article}
\usepackage[margin=.2in]{geometry}
\usepackage{flowfram}
\usepackage{blindtext}

\pagestyle{empty}

\setlength{\columnsep}{1in}
\newlength{\mywidth}
\setlength{\mywidth}{\dimexpr \textwidth-0.5\columnsep}
\divide\mywidth by 4

\newflowframe*[1]{\mywidth}{\textheight}{\dimexpr 0\mywidth + 0\columnsep}{0pt}
\newflowframe*[1]{\mywidth}{\textheight}{\dimexpr 0.66\mywidth + 1\columnsep}{0pt}
\newflowframe*[1]{\mywidth}{\textheight}{\dimexpr 1.33\mywidth + 2\columnsep}{0pt}
\newflowframe*[1]{\mywidth}{\textheight}{\dimexpr 2\mywidth + 3\columnsep}{0pt}

\newflowframe*[2]{\mywidth}{\textheight}{\dimexpr 0.66\mywidth + 1\columnsep}{0pt}
\newflowframe*[2]{\mywidth}{\textheight}{\dimexpr 1.33\mywidth + 2\columnsep}{0pt}
\newflowframe*[2]{\mywidth}{\textheight}{\dimexpr 0\mywidth + 0\columnsep}{0pt}
\newflowframe*[2]{\mywidth}{\textheight}{\dimexpr 2\mywidth + 3\columnsep}{0pt}



\begin{document} 

	1 page
	\newpage
	2 page
	\newpage
	3 page
	\newpage
	4 page
	\newpage
	5 page
	\newpage
	6 page
	\newpage
	7 page
	\newpage
	8 page
	\newpage

\end{document}
Question:
How can I do a layout like the image?
Attachments
layout.PNG
layout.PNG (9.33 KiB) Viewed 2047 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply