I'd like to create a newsletter in LaTeX based on another newsletter I have seen.
The newsletter would have a narrow column down the left of the page with a background colour, this column would be the full length of the page and also go to the top bottom and left edges of the paper, another column would be next to this which would use up the rest of the space on the page.
My initial thoughts were to use minipage as I am unsure if anything else exists that could potentially do it, I am not sure if minipage is able to do background colours however. If it is possible I'd like the image to be in the background, the image shouldn't tile and it potentially may not be the correct dimensions of the sidebar, I would however try to make the image the correct dimensions, text would overlay the image, this can partially be seen in the attached picture below.
I think my question has sort of been partially answered here: Have minipage take up entire page height
I only found the above after posting as it was suggested to me.
What isn't clear is how do I add some padding inside the mini page on the left and possibly add a background image, I may not want to but the option to would be nice.
Also after the initial first page with the two mini pages how do I return the margins back to their default settings? it seems you can only do this in the preamble, so perhaps I should have a separate file maybe with the first page in and then include this in the main document perhaps? As in \begin{titlepage} or something?
A slightly edited screengrab via the snipping tool is showed below.
\documentclass[10pt]{article}
\usepackage{xcolor}
\usepackage{calc}
\usepackage[margin=0in]{geometry} % https://ctan.org/pkg/geometry?lang=en
\definecolor{sidebar}{RGB}{71,62,136}
\setlength{\parindent}{0pt}
\begin{document}
%\bgroup
\setlength{\topskip}{0pt}
\fcolorbox{sidebar}{sidebar}%
{%
\begin{minipage}[t][\textheight-2\fboxsep-2\fboxrule][t]{0.2\textwidth}
\color{white} % White text
\LARGE Hello
\end{minipage}%
}
Hello
\end{document}


Yes and no, so the first page would have two columns the rest of the pages wouldn't, the first page has a dual purpose as in being 40% title page (left hand side) and 60% normal content (right hand side).
Using some of the code on that other page, page 2 has margins of 0in as this is what was needed for page 1, so on page 2 every is flush to the edge of the page and in the top corner.
– AeroMaxx May 27 '22 at 05:42