diff options
Diffstat (limited to 'Master/texmf-dist/tex/lualatex')
-rw-r--r-- | Master/texmf-dist/tex/lualatex/cstypo/cstypo.sty | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/lualatex/cstypo/cstypo.sty b/Master/texmf-dist/tex/lualatex/cstypo/cstypo.sty new file mode 100644 index 00000000000..5fe04b38d35 --- /dev/null +++ b/Master/texmf-dist/tex/lualatex/cstypo/cstypo.sty @@ -0,0 +1,30 @@ +% LaTeX package to enforce some basic Czech language typography +% rules. Requires LuaLaTeX. +% +% (c) 2016 Václav Haisman +% +%% This program can be redistributed and/or modified under the terms of the +%% MIT license. See LICENSE file. +% +\NeedsTeXFormat{LaTeX2e}[1994/06/01] +\ProvidesPackage{cstypo} + [2016/08/30 v0.02 LaTeX package to enforce some basic Czech language + typography rules. Requires Lua(La)TeX.] + +\RequirePackage{ifluatex} + +\ifluatex +\input{cstypo-tex} +\else +\PackageError{cstypo}{% + This requires LuaTeX or LuaLaTeX +}{% + Compile this with LuaTeX or LuaLaTeX. +} + +\fi + +\endinput + +%% +%% End of file `cstypo.sty'. |