2022-07-18 20:11:20 +02:00
|
|
|
% I think this was mandatory, paper size, font size and type
|
2022-07-23 13:00:40 +02:00
|
|
|
% artikel3 is NL, but more pleasant to European than article
|
|
|
|
% Potentially interesting options:
|
|
|
|
% * onecolumn (default) or twocolumn
|
|
|
|
% * final (default) or draft
|
|
|
|
\documentclass[a4paper,12pt]{artikel3}
|
2022-07-18 20:11:20 +02:00
|
|
|
% I am unsure on this being mandatory, but explicit is probably better than
|
|
|
|
% implicit?
|
|
|
|
%\usepackage[T1]{fontenc}
|
2022-07-18 20:36:24 +02:00
|
|
|
% Definitely reduntant, this library book spoke of latin1. Don't uncomment
|
|
|
|
% with cmap
|
|
|
|
%\usepackage[utf8]{inputenc}
|
2022-07-18 20:11:20 +02:00
|
|
|
% 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}
|
2022-07-18 20:36:24 +02:00
|
|
|
% texlive-cmap makes pdflatex copy-pasteable
|
|
|
|
\usepackage{cmap}
|
2022-07-23 09:43:23 +02:00
|
|
|
% This package is great and I want to be reminded of it whenever I use \LaTeX
|
|
|
|
\usepackage{censor}
|
|
|
|
|
|
|
|
% Uncomment to uncensor in output
|
|
|
|
%\StopCensoring
|
2022-07-18 20:11:20 +02:00
|
|
|
|
|
|
|
% Text begins here
|
|
|
|
\begin{document}
|
2022-07-23 09:43:23 +02:00
|
|
|
|
|
|
|
\section*{Hello World!}
|
|
|
|
|
2022-07-18 20:11:20 +02:00
|
|
|
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!
|
|
|
|
|
2022-07-23 09:43:23 +02:00
|
|
|
\section*{Samahko suomeksi!}
|
|
|
|
|
2022-07-18 20:11:20 +02:00
|
|
|
Hei maailma, heitän hiukan suomenkieltäkin tähän asiakirjaan perustellakseni
|
|
|
|
ääkkösten käyttöä!
|
|
|
|
|
2022-07-23 09:43:23 +02:00
|
|
|
\section*{Playing with censor}
|
|
|
|
|
|
|
|
\xblackout{If the source is private, this is a secret!
|
|
|
|
|
|
|
|
So don't go talking about it!}
|
|
|
|
|
|
|
|
\def \Password{\censor*{8}}
|
|
|
|
\def \Huippusalainen{\censor*{14}}
|
|
|
|
|
|
|
|
Salasana on \Password. Älä unohda salasanan olevan \Password. Tämä tieto on \Huippusalainen.
|
|
|
|
|
2022-07-18 20:11:20 +02:00
|
|
|
% And ends here
|
|
|
|
\end{document}
|