reduce space in \R command

This commit is contained in:
Jeff Lance 2016-08-15 00:54:30 +02:00
parent 7ab237ce4d
commit 8e140ab839

View File

@ -55,15 +55,15 @@
\NewDocumentCommand \R { s g } { \NewDocumentCommand \R { s g } {
\IfBooleanTF {#1} { \IfBooleanTF {#1} {
\IfNoValueTF {#2} { \IfNoValueTF {#2} {
\( \mathbb{R} \setminus \{0\} \) \( \!\!\!\! \mathbb{R} \setminus \{0\} \!\!\!\! \)
}{ }{
\( \mathbb{R} \setminus \{0, #2\} \) \( \!\!\!\! \mathbb{R} \setminus \{0, #2\} \!\!\!\! \)
} }
}{ }{
\IfNoValueTF {#2} { \IfNoValueTF {#2} {
\( \mathbb{R} \) \( \!\!\!\! \mathbb{R} \!\! \)
}{ }{
\( \mathbb{R} \setminus \{#2\} \) \( \!\!\!\! \mathbb{R} \setminus \{#2\} \!\!\!\! \)
} }
} }
} }