Created
October 7, 2021 10:21
-
-
Save meithecatte/6d8eaef420ce17ac0ad3a589f06d2884 to your computer and use it in GitHub Desktop.
A basic LaTeX template because I'm changing it too much to make it a .cls file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% thx @jix_ for sharing their fonts | |
% compiles out of the box on https://tectonic-typesetting.github.io/ but may work | |
% on other LaTeX distros | |
\documentclass[a4paper,12pt,headings=standardclasses]{scrartcl} | |
\usepackage{mathpazo} | |
\usepackage{fontspec} | |
\setmainfont{TeX Gyre Pagella} | |
\setkomafont{disposition}{}\RedeclareSectionCommands[font=\bfseries]{paragraph} | |
\usepackage{tikz,tkz-euclide} | |
\usepackage{amssymb} | |
\usepackage[polish]{babel} | |
\usetkzobj{all} | |
\usetikzlibrary{graphs} | |
\usepackage{amsmath,amsthm,gensymb,hyperref,graphicx,geometry,multicol} | |
\usepackage[shortlabels]{enumitem} | |
\geometry{top=1.5cm,bottom=2.5cm,left=2cm,right=2cm} | |
\newcommand\NN{\mathbb N} | |
\newcommand\RR{\mathbb R} | |
\newcommand\QQ{\mathbb Q} | |
\newcommand\ZZ{\mathbb Z} | |
\newcommand\OO{\mathcal O} | |
\newcommand\qq[1]{\stackrel{?}{#1}} % e.g. \qq\geq | |
\parindent=0pt | |
\parskip=6pt | |
\newtheorem{theorem}{Twierdzenie} | |
\newtheorem{problem}{Zadanie} | |
\newtheorem{lemma}{Lemat}[problem] | |
\theoremstyle{definition} | |
\newtheorem{defn}{Definicja} | |
\begin{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment