summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/chemmacros/chemmacros.module.greek.code.tex
blob: 358d0716f9682b8a7c75cf4f446693f206c48df3 (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
% --------------------------------------------------------------------------
%
% the CHEMMACROS package -- module: `greek'
%
% --------------------------------------------------------------------------
% Clemens Niederberger
% --------------------------------------------------------------------------
% https://github.org/cgnieder/chemmacros/
% contact@mychemistry.eu
% --------------------------------------------------------------------------
% If you have any ideas, questions, suggestions or bugs to report, please
% feel free to contact me.
% --------------------------------------------------------------------------
% Copyright 2011--2020 Clemens Niederberger
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3c
% of this license or (at your option) any later version.
% The latest version of this license is in
%   http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2008/05/04 or later.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is Clemens Niederberger.
% --------------------------------------------------------------------------
\ChemModule{greek}{2020/02/02 upright greek symbols}

\RequirePackage{chemgreek}[2020/01/16]

\msg_new:nnn {chemmacros} {no-greek}
  {
    You~ haven't~ loaded~ any~ package~ for~ upright~ Greek~ letters~ or~ no~
    unique~ choice~ was~ possible.~ Either~ load~ one~ of~ packages~
    specified~ in~ the~ manual~ or~ select~ a~ chemgreek~ mapping~ manually.
  }

\msg_new:nnn {chemmacros} {greek-undefined}
  {
    The~ chemgreek~ mapping~ `#1'~ you~ chose~ \msg_line_context: \c_space_tl
    is~ not~ defined.~ Please~ choose~ another~ one.
  }

% chemgreek selects a mapping if an unambiguous choice is possible, otherwise
% selects `default'. Warn the user in this case:
\AtBeginDocument{
  \bool_lazy_or:nnT
    { \chemgreek_if_mapping_active_p:n {default} }
    { \chemgreek_if_mapping_active_p:n {var-default} }
    { \msg_warning:nn {chemmacros} {no-greek} }
}

% an option for manual selection:
\chemmacros_define_global_keys:n
  { greek .code:n = \chemmacros_choose_chemgreek_mapping:n {#1} }

\cs_new_protected:Npn \chemmacros_choose_chemgreek_mapping:n #1
  {
    \chemgreek_if_mapping_exists:nTF {#1}
      {
        \chemgreek_load_mapping_package:n {#1}
        \chemgreek_activate_mapping:n {#1}
      }
      { \msg_warning:nnn {chemmacros} {greek-undefined} {#1} }
  }

% --------------------------------------------------------------------------
\file_input_stop:
2020/02/02 - lazy boolean evaluation