diff options
author | Norbert Preining <norbert@preining.info> | 2019-12-14 03:01:43 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-12-14 03:01:43 +0000 |
commit | 2c20697e8a5301b61c59d752fd1cfa7499724eec (patch) | |
tree | d2475f5c56c14a7c38d26cfd2c5b71d4e0d824e0 /macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx | |
parent | fdd3c58e8e5b37dcf9affd49326899988992c074 (diff) |
CTAN sync 201912140301
Diffstat (limited to 'macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx')
-rw-r--r-- | macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx | 214 |
1 files changed, 214 insertions, 0 deletions
diff --git a/macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx b/macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx new file mode 100644 index 0000000000..ae6b248c22 --- /dev/null +++ b/macros/latex/contrib/datetime2-contrib/datetime2-german/datetime2-german-base-utf8.dtx @@ -0,0 +1,214 @@ +%\iffalse +%<*package> +%% \CharacterTable +%% {Upper-case \A\B\C\D\E\F\G\H\I\J\K\L\M\N\O\P\Q\R\S\T\U\V\W\X\Y\Z +%% Lower-case \a\b\c\d\e\f\g\h\i\j\k\l\m\n\o\p\q\r\s\t\u\v\w\x\y\z +%% Digits \0\1\2\3\4\5\6\7\8\9 +%% Exclamation \! Double quote \" Hash (number) \# +%% Dollar \$ Percent \% Ampersand \& +%% Acute accent \' Left paren \( Right paren \) +%% Asterisk \* Plus \+ Comma \, +%% Minus \- Point \. Solidus \/ +%% Colon \: Semicolon \; Less than \< +%% Equals \= Greater than \> Question mark \? +%% Commercial at \@ Left bracket \[ Backslash \\ +%% Right bracket \] Circumflex \^ Underscore \_ +%% Grave accent \` Left brace \{ Vertical bar \| +%% Right brace \} Tilde \~} +%</package> +% +% Doc-Source file to use with LaTeX2e +% Copyright (C) 2015 Nicola Talbot, all rights reserved. +% Copyright (C) 2017-19 Sebastian Friedl, all rights reserved. +% \fi +% +% +% +% \subsection{UTF-8 code: \texttt{datetime2-german-base-utf8.dtx}} +% The definitions in this file use UTF-8 characters. It is loaded if +% \hologo{XeLaTeX} or \hologo{LuaLaTeX} are used. Please make sure that +% your text editor's encoding is set to UTF-8 if you want to view this code. +% \changes{1.0}{2015-03-27}{Initial release} +% +% \medskip +% Identify module. +% \begin{macrocode} +\ProvidesDateTimeModule{german-base-utf8}[2019/12/13 v3.0] +% \end{macrocode} +% +%\begin{macro}{\DTMgermanmonthname} +% German month names. +% \begin{macrocode} +\newcommand*{\DTMgermanmonthname}[1]{% + \ifcase#1 + \or + Januar% + \or + Februar% + \or + März% + \or + April% + \or + Mai% + \or + Juni% + \or + Juli% + \or + August% + \or + September% + \or + Oktober% + \or + November% + \or + Dezember% + \fi +} +% \end{macrocode} +%\end{macro} +% +%\begin{macro}{\DTMdeATmonthname} +%\changes{2.0}{2017-10-03}{Implemented Austrian month names} +% Austrian German month names. +% \begin{macrocode} +\newcommand*{\DTMdeATmonthname}[1]{% + \ifcase#1 + \or + Jänner% + \or + Februar% + \or + März% + \or + April% + \or + Mai% + \or + Juni% + \or + Juli% + \or + August% + \or + September% + \or + Oktober% + \or + November% + \or + Dezember% + \fi +} +% \end{macrocode} +%\end{macro} +% +%\begin{macro}{\DTMgermanshortmonthname} +% Abbreviated German month names. +%\changes{1.2}{2017-09-10}{Implemented short month names} +%\changes{2.0}{2017-10-03}{Fixed German short month names} +% \begin{macrocode} +\newcommand*{\DTMgermanshortmonthname}[1]{% + \ifcase#1 + \or + Jan.% + \or + Feb.% + \or + März% + \or + Apr.% + \or + Mai% + \or + Juni% + \or + Juli% + \or + Aug.% + \or + Sept.% + \or + Okt.% + \or + Nov.% + \or + Dez.% + \fi +} +% \end{macrocode} +%\end{macro} +% +%\begin{macro}{\DTMdeATshortmonthname} +%\changes{2.0}{2017-10-03}{Implemented Austrian short month names} +% Abbreviated Austrian German month names. +% \begin{macrocode} +\newcommand*{\DTMdeATshortmonthname}[1]{% + \ifcase#1 + \or + Jän.% + \or + Feb.% + \or + März% + \or + Apr.% + \or + Mai% + \or + Juni% + \or + Juli% + \or + Aug.% + \or + Sept.% + \or + Okt.% + \or + Nov.% + \or + Dez.% + \fi +} +% \end{macrocode} +%\end{macro} +% +%\begin{macro}{\DTMdeCHshortmonthname} +% Abbreviated Swiss German month names. +%\changes{2.0}{2017-10-03}{Implemented Swiss short month names} +% \begin{macrocode} +\newcommand*{\DTMdeCHshortmonthname}[1]{% + \ifcase#1 + \or + Jan.% + \or + Febr.% + \or + März% + \or + April% + \or + Mai% + \or + Juni% + \or + Juli% + \or + Aug.% + \or + Sept.% + \or + Okt.% + \or + Nov.% + \or + Dez.% + \fi +} +% \end{macrocode} +%\end{macro} +% +\endinput |