summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/lualatex/cstypo
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-08-30 22:09:13 +0000
committerKarl Berry <karl@freefriends.org>2016-08-30 22:09:13 +0000
commit5d57911ad9007b3033d3a7026a4c80eb84544c8a (patch)
tree5583a028dfbecb644a3b444f16748b8787e55d85 /Master/texmf-dist/tex/lualatex/cstypo
parentcbed1c425c3661149b661eb627dd7e57f0182b0f (diff)
cstypo (30aug16)
git-svn-id: svn://tug.org/texlive/trunk@41957 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/lualatex/cstypo')
-rw-r--r--Master/texmf-dist/tex/lualatex/cstypo/cstypo.sty30
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'.