October 2015
Intermediate to advanced
378 pages
7h 44m
English
Self-made calendars can be a great gift. Also, for work and education, it would be great to have our own customized calendar.
In this recipe, we will print a calendar of a whole year, with all months arranged in a tabular layout. You can adjust it to print just one month below an image, for example.
We will use the mighty TikZ bundle again, since it provides a calendar library:
document class and page dimensions. Furthermore, change to empty pagestyle to not have page numbering:\documentclass{article}
\usepackage[margin = 2.5cm, a4paper]{geometry}
\pagestyle{empty}calendar and positioning:\usepackage{tikz}
\usetikzlibrary{calendar,positioning}Read now
Unlock full access