[Tex/LaTex] LaTeX Template for Newsletter/Brochure

book-designmarginspdftextikz-pgf

I am looking for a LaTeX template that can be used for a brochure-like newsletter, A4 format, column-like design with optional spanning pictures, marginless pictures, marginless headlines.

I browsed a lot of repositories with Latex templates, however, most of them look too much like Latex, i.e. exhibit much too much text and standard margins. I like to focus on an elegant layout, few text, impressive pictures.

I am experienced with LateX layouting for scientific use. But this is my first reach to public outreach and I have not a single clue about how to achieve the goal. My first idea would be just using tikz pictures and text fields, but this is not an elegant way of typesetting, and as far as I know text field boxes do not float due to their fixed size.

It is important to do it in Latex rather than InDesign or Corel, because contents should be created with Markdown on a regular, automated basis.

Here is my imagination of the layout:
enter image description here

Best Answer

This is a workaround I found to be handy enough for most needs. However, it is not perfect and I am still open for other suggestions.

enter image description here

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lipsum}
\usepackage{xcolor} % allow color!ratio
\usepackage{hyperref} % allow phantomsection

%%% figures
\usepackage{graphicx} % includegraphics
\usepackage{float} % minipage float

%%% Geometry    
\usepackage[includeheadfoot,left=0cm, right=0cm,
    top=0cm, bottom=0cm, headheight=70pt,
    headsep=0cm,footskip=0cm]{geometry}

%%% Head & Foot
\usepackage{fancyhdr}

\fancypagestyle{mypages}{%
    \fancyhf{}
    \renewcommand{\headrulewidth}{0pt}
    \fancyhead[L]{%
    \strut\rlap{\color{gray}\rule[-2\dp\strutbox]{\headwidth}{\headheight}}%
    \quad\raisebox{-0.05\height}{\includegraphics[scale=1]{logo.pdf}}%
    \fontsize{25pt}{30pt}\selectfont
     \textcolor{white}{$\;$ version \bfseries 5}
    \textcolor{gray!30}{ \bfseries: Newsletter}
    }
    \fancyhead[R]{\color{white}page \bfseries\thepage\quad}
    \fancyfoot{}
}
\pagestyle{mypages}

% sections
\usepackage[explicit]{titlesec}
    \titleformat{name=\section}
        {% format
            \pagebreak[3]
            \vspace{1em}
            \color{gray!10}\titlerule[6pt]\color{black}
            \vspace*{2em}
            \huge
            \bfseries }
        {} % label
        {0em} % label sep
        {\hspace{0.05\textwidth}%
        \parbox[t]{0.9\textwidth}{\raggedright#1}}
        [\phantomsection] % before

% Disclaimer box
\newenvironment{bottompar}{\par\vspace*{\fill}}{\clearpage}

%%%
\begin{document}

% Introduction
\setlength{\fboxsep}{15pt}
\noindent\colorbox{gray!20}{\parbox[t]{\dimexpr\textwidth-30pt}{\color{gray}
    This is a newsletter presenting interesting topics.
}}\vspace*{-1cm}

% Content

\section{Long and catchy headline for article 1}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
    \includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
    \lipsum[1-2]
\end{minipage}

\section{Long and catchy headline for article 2}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
    \includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
    \lipsum[1]
\end{minipage}

\section{Long and catchy headline for article 3}
\noindent\begin{minipage}[t]{0.5\textwidth}\vspace{-2em}
\begin{figure}[H]%
    \includegraphics[width=\textwidth]{foto.jpg}
\end{figure}
\end{minipage}
\hspace{0.03\textwidth}
\noindent\begin{minipage}[t]{0.4\textwidth}
    \lipsum[1-3]
\end{minipage}

% Disclaimer
\begin{bottompar}
\setlength{\fboxsep}{15pt}
\noindent\colorbox{gray!20}{\parbox[t]{\dimexpr\textwidth-30pt}{\color{gray}
    This is the disclaimer for this great newsletter \hfill \copyright{} 2016}}
\end{bottompar}

\end{document}