LaTeX/hello.tex: initial commit

This commit is contained in:
Aminda Suomalainen 2022-07-18 21:11:20 +03:00
parent 5e8b9ec86e
commit 250f943b8e
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q
2 changed files with 28 additions and 0 deletions

5
LaTeX/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# I think I don't need the compiled versions, thanks
*.aux
*.dvi
*.log
*.pdf

23
LaTeX/hello.tex Normal file
View File

@ -0,0 +1,23 @@
% I think this was mandatory, paper size, font size and type
% artikel1 is NL, but more pleasant to European than article
\documentclass[a4paper,12pt]{artikel1}
% I am unsure on this being mandatory, but explicit is probably better than
% implicit?
%\usepackage[T1]{fontenc}
% Definitely reduntant, this library book spoke of latin1
\usepackage[utf8]{inputenc}
% I can specify multiple languages for hyphenation! texlive-babel
\usepackage[english,finnish]{babel}
% Noto Serif font. Remember to install texlive-fontaxes, texlive-noto
\usepackage{noto-serif}
% Text begins here
\begin{document}
Hello Wörld! This is a simple \LaTeX\ template file or similar where I can
cheat how does this work again. Possibly with even comments!
Hei maailma, heitän hiukan suomenkieltäkin tähän asiakirjaan perustellakseni
ääkkösten käyttöä!
% And ends here
\end{document}