tikz-kalender generates Austrian style calendar
Go to file
Thomas Kuschel ddbbdb26de
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled
Update README-DE.md
2024-11-20 11:04:30 +01:00
.gitea/workflows UPD readme, runner demo 2024-06-05 21:07:49 +02:00
img UPD Readme en+de 2024-06-06 19:39:48 +02:00
.gitattributes UPD readme en 2024-06-03 18:19:40 +02:00
.gitignore init commit 2024-06-02 18:48:49 +02:00
geburtstage.events init commit 2024-06-02 18:48:49 +02:00
kalender2025.pdf UPD Readme en+de 2024-06-06 19:39:48 +02:00
kalender2025.tex init commit 2024-06-02 18:48:49 +02:00
README-DE.md Update README-DE.md 2024-11-20 11:04:30 +01:00
README.md Update README.md 2024-11-20 10:55:52 +01:00
tikz-kalender_2025_schulferien.events init commit 2024-06-02 18:48:49 +02:00
tikz-kalender_feiertage.events init commit 2024-06-02 18:48:49 +02:00

Calendar creation in Latex

en de

The package used the Latex package tikz-kalender, which takes parameters, and generates a calendar for the year the arguments specifies.

We show here the possibility of changing the names of the months to the Austrian variant. These are the local words Jänner instead of January and Feber instead of February.

The Kalender

Important

The repository uses git's lfs, large file system, to store pdf files. If you want to work on the project and commit with git, you must first install git-lfs. Afterwards, you can clone this repository.

Installation of Latex -- Editor -- and Code (Visual Studio)

My recommandation

  1. Install TeX Live from https://tug.org/texlive/

    For Windows PCs, the installer file install-tl-windows.exe will install all necessary files to the hard disk (C:/texlive/2024) to manage the active versions of each TeX package via a tlshell, a TeX Live Shell where you can update/install any latex package.

    If you are new to LaTex, just install all packages to your system. It took several minutes (hours) to install all the TeX libraries.

  2. Install Code, i.e. Visual Studio Code from https://code.visualstudio.com/

  3. Install Git and Git-LFS from https://git-scm.com/ and https://git-lfs.com/

    This is my recommanded versioning system for my tex code. Additionally, I use the file .gitignore in my repository to ignore several files in its folder which can be found at https://github.com/github/gitignore , especially the file https://github.com/github/gitignore/blob/main/TeX.gitignore

    Copy this file as .gitignore to the root folder of your repository.

    In addition, I use a .gitattributes file to manage large files inside git (git-lfs):

*.zip filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.image filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.ai filter=lfs diff=lfs merge=lfs -text
*.psd filter=lfs diff=lfs merge=lfs -text
*.doc* filter=lfs diff=lfs merge=lfs -text
*.xls* filter=lfs diff=lfs merge=lfs -text
*.ppt filter=lfs diff=lfs merge=lfs -text
*.ppt* filter=lfs diff=lfs merge=lfs -text
*.emf filter=lfs diff=lfs merge=lfs -text
*.wmf filter=lfs diff=lfs merge=lfs -text
*.raw filter=lfs diff=lfs merge=lfs -text
*.exe filter=lfs diff=lfs merge=lfs -text
*.SchDoc filter=lfs diff=lfs merge=lfs -text
  1. Install the Extension LaTeX Workshop inside (Visual Studio) Code

--