diff options
author | Marcin Chrzanowski <mc370754@students.mimuw.edu.pl> | 2021-08-13 12:49:33 -0400 |
---|---|---|
committer | Marcin Chrzanowski <mc370754@students.mimuw.edu.pl> | 2021-08-13 12:49:33 -0400 |
commit | b61f6033fad9adf56be2676cf9e3dd265df37911 (patch) | |
tree | 4c57086d6d481e685895f7880afd298333c59cd5 | |
parent | b4e6cc76fb81832a72413ea4cf20ff437c22f008 (diff) |
Fix Polish characters
-rw-r--r-- | pracamgr.cls | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/pracamgr.cls b/pracamgr.cls index 6666254..e45c525 100644 --- a/pracamgr.cls +++ b/pracamgr.cls @@ -17,13 +17,10 @@ \ExecuteOptions{pl} \ProcessOptions\relax -\ifmyclass@en - \RequirePackage[english]{babel} - \RequirePackage[T1]{fontenc} -\else - \RequirePackage[polish]{babel} - \RequirePackage[T1]{fontenc} -\fi +\RequirePackage[english]{babel} +% This previously had the [T1] option, not sure what it's for but removing it +% fixes Polish characters throughout the document. +\RequirePackage{fontenc} \RequirePackage[utf8]{inputenc} \def\@baseclass{report} |