summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/unicode-math/um-code-ui.dtx
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-09-26 03:03:17 +0000
committerNorbert Preining <norbert@preining.info>2020-09-26 03:03:17 +0000
commit66ebd4914b367eb00a52ce5d5bb51f695101931b (patch)
treee5e4a5148bbf213f7ecc242d333bbde165d41e3b /macros/latex/contrib/unicode-math/um-code-ui.dtx
parent56c9134f4aa02292ed17e726efd8e493b90e6011 (diff)
CTAN sync 202009260303
Diffstat (limited to 'macros/latex/contrib/unicode-math/um-code-ui.dtx')
-rw-r--r--macros/latex/contrib/unicode-math/um-code-ui.dtx101
1 files changed, 0 insertions, 101 deletions
diff --git a/macros/latex/contrib/unicode-math/um-code-ui.dtx b/macros/latex/contrib/unicode-math/um-code-ui.dtx
deleted file mode 100644
index 38c257d1dc..0000000000
--- a/macros/latex/contrib/unicode-math/um-code-ui.dtx
+++ /dev/null
@@ -1,101 +0,0 @@
-%%^^A%% um-code-ui.dtx -- part of UNICODE-MATH <wspr.io/unicode-math>
-%%^^A%% The xparse user interface top-level definitions.
-
-% \section{The user interface commands}
-%
-% \begin{macrocode}
-%<*package>
-% \end{macrocode}
-%
-% \begin{macro}{\unimathsetup}
-% This macro can be used in lieu of or later to override
-% options declared when the package is loaded.
-% \begin{macrocode}
-\NewDocumentCommand \unimathsetup {m} { \keys_set:nn {unicode-math} {#1} }
-% \end{macrocode}
-% \end{macro}
-%
-% \begin{macro}{\setmathfont}
-% \doarg{font features (first optional argument retained for backwards compatibility)}
-% \darg{font name}
-% \doarg{font features}
-% \begin{macrocode}
-\NewDocumentCommand \setmathfont { O{} m O{} }
- {
- \@@_setmathfont:nn {#1,#3} {#2}
- }
-% \end{macrocode}
-% \end{macro}
-%
-% \begin{macro}{\setmathfontface}
-% \begin{macrocode}
-\NewDocumentCommand \setmathfontface { m O{} m O{} }
- {
- \@@_setmathfontface:Nnn #1 {#2,#4} {#3}
- }
-% \end{macrocode}
-%
-% Note that \LaTeX’s \cs{SetMathAlphabet} simply doesn’t work to “reset” a maths alphabet font after \verb”\begin{document}”, so unlike most of the other maths commands around we still restrict this one to the preamble.
-% \begin{macrocode}
-\@onlypreamble \setmathfontface
-% \end{macrocode}
-% \end{macro}
-%
-%
-% \begin{macro}{\setoperatorfont}
-% TODO: add check?
-% \begin{macrocode}
-\NewDocumentCommand \setoperatorfont {m}
- {
- \tl_gset:Nn \g_@@_operator_mathfont_tl {#1}
- }
-\setoperatorfont{\mathrm}
-% \end{macrocode}
-% \end{macro}
-%
-% \begin{macro}{\addnolimits}
-% This macro appends material to the macro containing the list of operators
-% that don’t take limits.
-% \begin{macrocode}
-\NewDocumentCommand \addnolimits {m}
- {
- \tl_put_right:Nn \l_@@_nolimits_tl {#1}
- }
-% \end{macrocode}
-% \end{macro}
-%
-%
-% \begin{macro}{\removenolimits}
-% Can this macro be given a better name?
-% It removes an item from the nolimits list.
-% \begin{macrocode}
-\NewDocumentCommand \removenolimits {m}
- {
- \tl_remove_all:Nn \l_@@_nolimits_tl {#1}
- }
-% \end{macrocode}
-% \end{macro}
-%
-%
-% \begin{macrocode}
-%</package>
-% \end{macrocode}
-
-\endinput
-
-% /©
-%
-% ------------------------------------------------
-% The UNICODE-MATH package <wspr.io/unicode-math>
-% ------------------------------------------------
-% This package is free software and may be redistributed and/or modified under
-% the conditions of the LaTeX Project Public License, version 1.3c or higher
-% (your choice): <http://www.latex-project.org/lppl/>.
-% ------------------------------------------------
-% Copyright 2006-2019 Will Robertson, LPPL "maintainer"
-% Copyright 2010-2017 Philipp Stephani
-% Copyright 2011-2017 Joseph Wright
-% Copyright 2012-2015 Khaled Hosny
-% ------------------------------------------------
-%
-% ©/