How to make a DIN A5 Long flyer

Learn how to make a DIN A5 Long flyer with online tools. This guide takes a 8 images or a 8-page PDF and makes a two-side DIN A5 Long flyer. All the tools required are online and for free. The guide takes a PDF converts it to images which are then re-arranged to DIN A5 Long paper format via LaTeX (no LaTeX knowledge required).

Setup

Requirements:

LaTeX Code

 1\documentclass[cm]{article}
 2\usepackage[margin=0mm, footskip=0mm, paperwidth=299mm, paperheight=107mm]{geometry}
 3
 4\usepackage{graphicx} % Required for inserting images
 5
 6\pagestyle{empty}
 7
 8\begin{document}
 9
10% Add the images to the 'page' directory
11% Create the directory if it doesn't exist
12
13% Front side page ordering
14\includegraphics[height=105mm, width=72mm]{./page/1.png}
15\includegraphics[height=105mm, width=72mm]{./page/2.png}
16\includegraphics[height=105mm, width=72mm]{./page/3.png}
17\includegraphics[height=105mm, width=72mm]{./page/4.png}
18
19\newpage
20
21% Back side page ordering
22\includegraphics[height=105mm, width=72mm]{./page/5.png}
23\includegraphics[height=105mm, width=72mm]{./page/6.png}
24\includegraphics[height=105mm, width=72mm]{./page/7.png}
25\includegraphics[height=105mm, width=72mm]{./page/8.png}
26
27\end{document}

Process

  1. Get the 8 images ready for example via a 8-page DIN A4 PDF via the https://pdf2png.com/ website.
  2. Copy the LaTeX code e.g. to https://www.overleaf.com and create a page directory for the images.
  3. Add the images to the page directory and make sure they are named as their page number.
  4. Reorder the pages for each side of the flyer from left-to-right. Compile to see the results.
  5. Take the compiled PDF to the website used for printing e.g. https://www.flyeralarm.com (170-200g as paper weight for printing). To save some money, consider printing as an unfolded flyer and manually fold it oneself.

Modifications

Can be adjusted to one's liking

  • page count
  • page size
  • folding style