summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/koma-script/doc/scrdate-en.tex
blob: fe66f3e05ae64a7522e23c098738254f502c05ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
% ======================================================================
% scrdate-en.tex
% Copyright (c) Markus Kohm, 2001-2022
%
% This file is part of the LaTeX2e KOMA-Script bundle.
%
% This work may be distributed and/or modified under the conditions of
% the LaTeX Project Public License, version 1.3c of the license.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3c or later is part of all distributions of LaTeX 
% version 2005/12/01 or later and of this work.
%
% This work has the LPPL maintenance status "author-maintained".
%
% The Current Maintainer and author of this work is Markus Kohm.
%
% This work consists of all files listed in MANIFEST.md.
% ======================================================================
%
% Chapter about scrdate of the KOMA-Script guide
% Maintained by Markus Kohm
%
% ============================================================================

\KOMAProvidesFile{scrdate-en.tex}
                 [$Date: 2022-06-05 12:40:11 +0200 (So, 05. Jun 2022) $
                  KOMA-Script guide (chapter: scrdate)]
\translator{Markus Kohm\and Gernot Hassenpflug\and Karl Hagen}

\chapter{The Day of the Week with \Package{scrdate}}
\labelbase{scrdate}
\BeginIndexGroup
\BeginIndex{Package}{scrdate}

Originally, the \Package{scrdate} package could only give the day of the week
for the current date. Nowadays, it offers this and more for any date in the
Gregorian calendar.

\begin{Declaration}
  \Macro{CenturyPart}\Parameter{year}\\%
  \Macro{DecadePart}\Parameter{year}%
\end{Declaration}%
The\ChangedAt{v3.05a}{\Package{scrdate}} \Macro{CenturyPart} command returns
the value of the century digits\,---\,thousands and hundreds\,---\,of a
\PName{year}. The \Macro{DecadePart} command, on the other hand, gives the
value of the remaining digits, i.\,e. the tens and the units. The
\PName{year} can have any number of digits. You can assign the value directly
to a counter or use it for calculations with
\Macro{numexpr}\IndexCmd{numexpr}. To output\textnote{Attention!} it as an
Arabic number, you should prefix it with \Macro{the}\IndexCmd{the}.

\begin{Example}
  You want to calculate and print the century of the current year.
\begin{lstcode}
  The year \the\year\ is year \the\DecadePart{\year}
  of the \engord{\numexpr\CenturyPart{\year}+1\relax} century.
\end{lstcode}
  The result would be:
  \begin{ShowOutput}
    The year \the\year\ is year \the\DecadePart{\year}
    of the \engordnumber{\numexpr\CenturyPart{\year}+1\relax} century.
  \end{ShowOutput}
  This example uses the \Package{engord}\IndexPackage{engord} package.
  See \cite{package:engord} for more information.
\end{Example}

Note\textnote{Attention!} that the counting method used here treats the year
2000 as year~0\,---\,and therefore the first year\,---\,of the 21st~century.
If necessary, however, you can make a correction with \Macro{numexpr}, as
shown for the ordinal number in the example.%
\EndIndexGroup


\begin{Declaration}
  \Macro{DayNumber}\Parameter{year}\Parameter{month}\Parameter{day}\\%
  \Macro{ISODayNumber}\Parameter{ISO-date}%
\end{Declaration}%
These\ChangedAt{v3.05a}{\Package{scrdate}} two commands return the value of
the day-of-the-week\Index{day>of the week} number for any date. They differ
only in the method of specifying the date. While the \Macro{DayNumber} command
requires the \PName{year}, \PName{month}, and \PName{day} as separate
parameters, the \Macro{ISODayNumber} command expects an \PName{ISO-date} as a
single argument, \PName{ISO-date}, using the ISO notation
\PName{year}\texttt{-}\PName{month}\texttt{-}\PName{day}. It does not matter
if the \PName{month} or \PName{day} have one or two digits. You can use the
result of both commands to assign directly to a counter or for calculations
using \Macro{numexpr}\IndexCmd{numexpr}. To print\textnote{Attention!} it as
an Arabic number, you should prefix it with \Macro{the}\IndexCmd{the}.

\begin{Example}
  You want to know the number of the day of the week of the 1st~May~2027.
\begin{lstcode}
  The 1st~May~2027 has \the\ISODayNumber{2027-5-1}
  as the number of the day of the week.
\end{lstcode}
  The result will be:
  \begin{ShowOutput}
    The 1st~May~2027 has \the\ISODayNumber{2027-5-1}
    as the number of the day of the week.
  \end{ShowOutput}
\end{Example}

It is particularly worth noting that you can even step a specified number of
days into the future or or the past from a given date.
\begin{Example}
  You want to know the number of the day of the week 12~days from now
  and 24~days before the 24th~December~2027.
\begin{lstcode}
  In 12~days, the number of the day of the week
  will be \the\DayNumber{\year}{\month}{\day+12}, and
  24~days before the 24th~December~2027 it will be
  \the\ISODayNumber{2027-12-24-24}.
\end{lstcode}
  The result could be, for example:
  \begin{ShowOutput}
    In 12~days, the number of the day of the week
    will be \the\DayNumber{\year}{\month}{\day+12}, and
    24~days before the 24th~December~2027 it will be
    \the\ISODayNumber{2027-12-24-24}.
  \end{ShowOutput}
\end{Example}

The days of the week are numbered as follows: Sunday\,=\,0, Monday\,=\,1,
Tuesday\,=\,2, Wednesday\,=\,3, Thursday\,=\,4, Friday\,=\,5, and
Saturday\,=\,6.%
%
\EndIndexGroup


\begin{Declaration}
  \Macro{DayNameByNumber}\Parameter{number of the day of the week}\\%
  \Macro{DayName}\Parameter{year}\Parameter{month}\Parameter{day}\\%
  \Macro{ISODayName}\Parameter{ISO-date}%
\end{Declaration}%
Usually\ChangedAt{v3.05a}{\Package{scrdate}} you are less interested in the
number of the day of the week than in its name. Therefore, the
\Macro{DayNameByNumber} command returns the name of the day of the week
corresponding to a day-of-the-week number. This number can be the result, for
example, of \Macro{DayNumber} or \Macro{ISODayNumber}. The two commands
\Macro{DayName} and \Macro{ISODayName} directly return the name of the day of
the week of a given date.

\begin{Example}
  You want to know the name of the day of the week of the 24th~December~2027.
\begin{lstcode}
  Please pay by \ISODayName{2027-12-24},
  24th~December~2027 the amount of \dots.
\end{lstcode}
  The result will be:
  \begin{ShowOutput}
    Please pay by \ISODayName{2027-12-24},
    24th~December~2027 the amount of \dots.
  \end{ShowOutput}
\end{Example}

Once again, it is particularly worth noting that you can perform calculations,
to a certain extent:
\begin{Example}
  You want to know the names of the day of the week 12~days from now
  and 24~days before the 24th~December~2027.
\begin{lstcode}
  In 12~days, the name of the day of the week
  will be \DayName{\year}{\month}{\day+12}, and
  24~days before the 24th~December~2027 it will be
  \ISODayName{2027-12-24-24}, while two weeks
  and three days after a Wednesday will be a
  \DayNameByNumber{3+2*7+3}.
\end{lstcode}
  The result could be, for example:
  \begin{ShowOutput}
    In 12~days, the name of the day of the week
    will be \DayName{\year}{\month}{\day+12}, and
    24~days before the 24th~December~2027 it will be
    \ISODayName{2027-12-24-24}, while two weeks
    and three days after a Wednesday will be a
    \DayNameByNumber{3+2*7+3}.
  \end{ShowOutput}
\end{Example}%
%
\EndIndexGroup


\begin{Declaration}
  \Macro{ISOToday}%
  \Macro{IsoToday}%
  \Macro{todaysname}%
  \Macro{todaysnumber}%
\end{Declaration}%
In the previous examples, the current date was always specified cumbersomely
using the \TeX{} registers \Macro{year}\IndexCmd{year},
\Macro{month}\IndexCmd{month}, and \Macro{day}\IndexCmd{day}. The
\Macro{ISOToday}\ChangedAt{v3.05a}{\Package{scrdate}} and \Macro{IsoToday}
commands directly return the current date in ISO-notation. These commands
differ only in the fact that \Macro{ISOToday} always outputs a two-digit month
and day, while \Macro{IsoToday} outputs single-digit numbers for values less
than 10. The \Macro{todaysname} command directly returns the name of the
current day of the week, while \Macro{todaysnumber} returns the number of the
current day of the week. You can find more information about using this value
in the explanations of \DescRef{scrdate.cmd.DayNumber} and
\DescRef{scrdate.cmd.ISODayNumber}.

\begin{Example}
  I want to show you on what day of the week this document was typeset:
\begin{lstlisting}
  This document was created on a \todaysname.
\end{lstlisting}
  This will result, for example, in:
  \begin{ShowOutput}
    This document was created on a \todaysname.
  \end{ShowOutput}
\end{Example}

For languages that have a case system for nouns, note that the package cannot
decline words. The terms are given in the form appropriate for displaying a
date in a letter, which is the nominative singular for the currently supported
languages. Given this limitation, the example above will not work correctly if
translated directly into some other languages.

\begin{Explain}
  The\textnote{Hint!} names of the weekdays in \Package{scrdate} all have
  initial capital letters. If you need the names completely in lower case, for
  example because that is the convention in the relevant language, simply wrap
  the command with the \LaTeX{} \Macro{MakeLowercase}\IndexCmd{MakeLowercase}%
  \important{\Macro{MakeLowercase}} command:
  % Umbruchkorrektur: listings
\begin{lstcode}
  \MakeLowercase{\todaysname}
\end{lstcode}
  This converts the whole argument into lower-case letters. Of course, you can
  also do this for
  \DescRef{scrdate.cmd.DayNameByNumber}\IndexCmd{DayNameByNumber},
  \DescRef{scrdate.cmd.DayName}\IndexCmd{DayName}, and
  \DescRef{scrdate.cmd.ISODayName}\IndexCmd{ISODayName} commands described
  above.%
\end{Explain}%
\EndIndexGroup


\begin{Declaration}
  \Macro{nameday}\Parameter{name}
\end{Declaration}%
Just as you can directly modify the output of \Macro{today} with
\DescRef{maincls.cmd.date}\IndexCmd{date}, so you can change the output of
\DescRef{scrdate.cmd.todaysname} to \PName{name} with \Macro{nameday}.
\begin{Example}
  You change the current date to a fixed value using
  \DescRef{maincls.cmd.date}. You are not interested in the actual name of the
  day, but want only to show that it is a workday. So you write:
\begin{lstlisting}
  \nameday{workday}
\end{lstlisting}
  After this, the previous example will result in:
  \begin{ShowOutput}\nameday{workday}
    This document was created on a \todaysname.
  \end{ShowOutput}
\end{Example}
There's no corresponding command to change the result of
\DescRef{scrdate.cmd.ISOToday}\IndexCmd{ISOToday} or
\DescRef{scrdate.cmd.IsoToday}\IndexCmd{IsoToday}.%
\EndIndexGroup


\begin{Declaration}
  \Macro{newdaylanguage}\Parameter{language}%
                        \Parameter{Monday}\Parameter{Tuesday}%
                        \Parameter{Wednesday}\Parameter{Thursday}%
                        \Parameter{Friday}\Parameter{Saturday}
                        \Parameter{Sunday}%
\end{Declaration}
Currently the \Package{scrdate} package recognizes the following languages:
\begin{itemize}\setlength{\itemsep}{.5\itemsep}
\item Croatian (\PValue{croatian}),
\item Czech (\PValue{czech}\ChangedAt{v3.13}{\Package{scrdate}}),
\item Danish (\PValue{danish}),
\item Dutch (\PValue{dutch}),
\item English (\PValue{american}\ChangedAt{v3.13}{\Package{scrdate}},
  \PValue{australian}, \PValue{british}, \PValue{canadian}, \PValue{english},
  \PValue{UKenglish}, and USenglish),
\item Finnish (\PValue{finnish}),
\item French (\PValue{acadian}, \PValue{canadien},
  \PValue{francais}\ChangedAt{v3.13}{\Package{scrdate}}, and \PValue{french}),
\item German (\PValue{austrian}\ChangedAt{v3.08b}{\Package{scrdate}},
  \PValue{german}, \PValue{naustrian}, \PValue{ngerman},
  \PValue{nswissgerman}, and
  \PValue{swissgerman}\ChangedAt{v3.13}{\Package{scrdate}}),
\item Italian (\PValue{italian}),
\item Norwegian (\PValue{norsk}),
\item Polish (\PValue{polish}\ChangedAt{v3.13}{\Package{scrdate}}),
\item Slovak (\PValue{slovak}),
\item Spanish (\PValue{spanish}),
\item Swedish (\PValue{swedish}).
\end{itemize}
You can also configure it for additional languages. To do so, the first
argument of \Macro{newdaylanguage} is the name of the language, and the other
arguments are the names of the corresponding days of the week.

In the current implementation, it does not matter whether you load
\Package{scrdate} before or after \Package{ngerman}\IndexPackage{ngerman},
\Package{babel}\IndexPackage{babel}, or similar packages. In each case the
correct language will be used provided it is supported.

\begin{Explain}
  To be more precise, as long as you select a language in a way that is
  compatible with \Package{babel}\IndexPackage{babel}, \Package{scrdate} will
  use the correct language. If this is not the case, you will get (US) English
  names.
\end{Explain}

Of course, if you create definitions for a language that was previously
unsupported, please mail them to the author of \KOMAScript{}. There is a good
chance that future versions of \KOMAScript{} will add support for that
language.%
\EndIndexGroup
%
\EndIndexGroup

\endinput

%%% Local Variables: 
%%% mode: latex
%%% TeX-master: "scrguide-en.tex"
%%% coding: utf-8
%%% ispell-local-dictionary: "en_GB"
%%% eval: (flyspell-mode 1)
%%% End: