texlive[67346] Master/texmf-dist: siunitx (12jun23)

commits+karl at tug.org commits+karl at tug.org
Mon Jun 12 22:15:23 CEST 2023


Revision: 67346
          http://tug.org/svn/texlive?view=revision&revision=67346
Author:   karl
Date:     2023-06-12 22:15:23 +0200 (Mon, 12 Jun 2023)
Log Message:
-----------
siunitx (12jun23)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md
    trunk/Master/texmf-dist/doc/latex/siunitx/siunitx-code.pdf
    trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
    trunk/Master/texmf-dist/source/latex/siunitx/siunitx-complex.dtx
    trunk/Master/texmf-dist/source/latex/siunitx/siunitx-print.dtx
    trunk/Master/texmf-dist/source/latex/siunitx/siunitx-table.dtx
    trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
    trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty

Modified: trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/doc/latex/siunitx/CHANGELOG.md	2023-06-12 20:15:23 UTC (rev 67346)
@@ -7,22 +7,35 @@
 
 ## [Unreleased]
 
+## [v3.2.6] - 2023-06-12
+
+### Fixed
+- Printing of symbols explicitly wrapped in `\ensuremath`
+  (see issue
+  [\#656](https://github.com/josephwright/siunitx/issues/656))
+- Printing of magnitudes for polar values when not parsing numbers
+  (see issue
+  [\#658](https://github.com/josephwright/siunitx/issues/658))
+ - Alignment of separated uncertainties in tables
+  (see issue
+  [\#665](https://github.com/josephwright/siunitx/issues/665))
+
 ## [v3.2.5] - 2023-04-13
 
 ### Fixed
-- Use of `\mathsf` for sanserif text documents (see issues
+- Use of `\mathsf` for sanserif text documents (see issue
   [\#655](https://github.com/josephwright/siunitx/issues/655))
 
 ## [v3.2.4] - 2023-04-04
 
 ### Fixed
-- Parsing of 'full' uncertainty parts with leading zeros (see issues
+- Parsing of 'full' uncertainty parts with leading zeros (see issue
   [\#652](https://github.com/josephwright/siunitx/issues/652))
 
 ## [v3.2.3] - 2023-03-14
 
 ### Fixed
-- Allow for `parse-nmumbers = false` in handling `\ang` (see issues
+- Allow for `parse-numbers = false` in handling `\ang` (see issue
   [\#649](https://github.com/josephwright/siunitx/issues/649))
 
 ## [v3.2.2] - 2023-03-04
@@ -1894,7 +1907,8 @@
 ### Added
 - First public testing release (as `si`)
 
-[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.2.5...HEAD
+[Unreleased]: https://github.com/josephwright/siunitx/compare/v3.2.6...HEAD
+[v3.2.6]: https://github.com/josephwright/siunitx/compare/v3.2.5...v3.2.6
 [v3.2.5]: https://github.com/josephwright/siunitx/compare/v3.2.4...v3.2.5
 [v3.2.4]: https://github.com/josephwright/siunitx/compare/v3.2.3...v3.2.4
 [v3.2.3]: https://github.com/josephwright/siunitx/compare/v3.2.2...v3.2.3

Modified: trunk/Master/texmf-dist/doc/latex/siunitx/siunitx-code.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/latex/siunitx/siunitx.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx-complex.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx-complex.dtx	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx-complex.dtx	2023-06-12 20:15:23 UTC (rev 67346)
@@ -650,7 +650,9 @@
 %    \begin{macrocode}
 \cs_new_protected:Npn \@@_parse_polar:nn #1#2
   {
-    \siunitx_number_parse:nN {#1} \l_@@_mag_tl
+    \bool_if:NTF \l_siunitx_number_parse_bool
+      { \siunitx_number_parse:nN {#1} \l_@@_mag_tl }
+      { \tl_set:Nn \l_@@_mag_tl { \ensuremath {#1} } }
     \group_begin:
       \keys_set:nn { siunitx }
         {
@@ -693,7 +695,9 @@
 %    \begin{macrocode}
 \cs_new_protected:Npn \siunitx_complex_number:n #1
   {
-    \bool_if:NTF \l_@@_force_polar_bool
+    \bool_lazy_and:nnTF
+      { \l_@@_force_polar_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \use:e
           {
@@ -726,7 +730,9 @@
   }
 \cs_new_protected:Npn \@@_number:nn #1#2
   {
-    \bool_if:NTF \l_@@_force_cartesian_bool
+    \bool_lazy_and:nnTF
+      { \l_@@_force_cartesian_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \exp_args:Ne \siunitx_complex_number:n
           { \@@_convert_cartesian:nn {#1} {#2} }
@@ -738,7 +744,9 @@
   }
 \cs_new_protected:Npn \siunitx_complex_quantity:nn #1#2
   {
-    \bool_if:NTF \l_@@_force_polar_bool
+    \bool_lazy_and:nnTF
+      { \l_@@_force_polar_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \use:e
           {
@@ -769,7 +777,9 @@
   }
 \cs_new_protected:Npn \@@_quantity:nnn #1#2#3
   {
-    \bool_if:NTF \l_@@_force_cartesian_bool
+    \bool_lazy_and:nnTF
+      { \l_@@_force_cartesian_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \exp_args:Ne \siunitx_complex_quantity:nn
           { \@@_convert_cartesian:nn {#1} {#2} }
@@ -1019,14 +1029,23 @@
 \cs_new_protected:Npn \@@_format_polar:n #1
   {
     \tl_if_blank:nTF {#1}
-      { \siunitx_number_process:NN \l_@@_mag_tl \l_@@_mag_tl }
       {
-        \use:c
-          { @@_format_polar_ \l_siunitx_quantity_prefix_mode_tl :n } {#1}
+        \bool_if:NT \l_siunitx_number_parse_bool
+          { \siunitx_number_process:NN \l_@@_mag_tl \l_@@_mag_tl }
       }
+      {
+        \bool_if:NTF \l_siunitx_number_parse_bool
+          {
+            \use:c
+              { @@_format_polar_ \l_siunitx_quantity_prefix_mode_tl :n } {#1}
+          }
+          { \@@_format_polar_input:n {#1} }
+      }
     \tl_set:Nx \l_@@_tmp_tl
       {
-        \siunitx_number_output:N \l_@@_mag_tl
+        \bool_if:NTF \l_siunitx_number_parse_bool
+          { \siunitx_number_output:N \l_@@_mag_tl }
+          { \exp_not:V \l_@@_mag_tl }
         \exp_not:V \l_@@_symbol_angle_tl
         \mathord % TEMP
         \exp_not:V \l_@@_angle_tl
@@ -1058,7 +1077,8 @@
   }
 \cs_new_protected:Npn \@@_format_polar_input:n #1
   {
-    \siunitx_number_process:NN \l_@@_mag_tl \l_@@_mag_tl
+    \bool_if:NT \l_siunitx_number_parse_bool
+      { \siunitx_number_process:NN \l_@@_mag_tl \l_@@_mag_tl }
     \siunitx_unit_format:nN {#1} \l_@@_unit_tl
   }
 %    \end{macrocode}

Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx-print.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx-print.dtx	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx-print.dtx	2023-06-12 20:15:23 UTC (rev 67346)
@@ -865,8 +865,7 @@
                 { \exp_after:wN \cs_set_eq:NN \l_siunitx_unit_font_tl \use:n }
               \cs_set:Npn \mathord ##1
                 { \@@_text_replace_first:N ##1 }
-              \group_begin:
-                \cs_set:Npn \pm { \: \exp_not:N \textpm \: }
+              \group_begin: 
                 \tl_map_inline:nn
                   { \mp \approx \sim \ge \le \geq \leq \gg \ll \angle }
                   {
@@ -873,13 +872,11 @@
                     \cs_set:Npn ##1
                       { \exp_not:N \ensuremath { \exp_not:N ##1 } }
                   }
-                \cs_set:Npn \cdot { \: \exp_not:N \textperiodcentered \: }
                 \cs_set:Npn \sqrt ##1
                   {
                     \exp_not:N \ensuremath
                       { \exp_not:N \sqrt { \exp_not:N \text {##1} } }
                   }
-                \cs_set:Npn \times { \: \exp_not:N \texttimes \: }
                 \protected at edef \l_@@_tmp_tl
                   { \exp_after:wN \@@_text_replace_first:N \l_@@_tmp_tl }
               \exp_args:NNNV \group_end:
@@ -910,6 +907,12 @@
         { \exp_not:N \@@_text_sub:n }
       ^
         { \exp_not:N \@@_text_super:n }
+      \exp_not:N \cdot
+        { \exp_not:N \: \exp_not:N \textperiodcentered \exp_not:N \: }
+      \exp_not:N \pm
+        { \exp_not:N \: \exp_not:N \textpm \exp_not:N \: }
+      \exp_not:N \times
+        { \exp_not:N \: \exp_not:N \texttimes \exp_not:N \: }
       \exp_not:N \q_recursion_tail
         { ? }
       \exp_not:N \q_recursion_stop

Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx-table.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx-table.dtx	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx-table.dtx	2023-06-12 20:15:23 UTC (rev 67346)
@@ -1513,7 +1513,7 @@
         + \box_wd:N \l_@@_tmp_box
       }
       {
-        \box_use:N \l_@@_uncert_box
+        \hbox_unpack:N \l_@@_uncert_box
         \tl_if_blank:nF {#2#5}
           { \siunitx_print_number:n {#4#5} }
         \@@_fil:

Modified: trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/source/latex/siunitx/siunitx.dtx	2023-06-12 20:15:23 UTC (rev 67346)
@@ -122,7 +122,7 @@
 %
 % Identify the package and give the over all version information.
 %    \begin{macrocode}
-\ProvidesExplPackage {siunitx} {2023-04-13} {3.2.5}
+\ProvidesExplPackage {siunitx} {2023-06-12} {3.2.6}
   {A comprehensive (SI) units package}
 %    \end{macrocode}
 %

Modified: trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty	2023-06-12 20:15:14 UTC (rev 67345)
+++ trunk/Master/texmf-dist/tex/latex/siunitx/siunitx.sty	2023-06-12 20:15:23 UTC (rev 67346)
@@ -42,7 +42,7 @@
       }%
     \endinput
   }%
-\ProvidesExplPackage {siunitx} {2023-04-13} {3.2.5}
+\ProvidesExplPackage {siunitx} {2023-06-12} {3.2.6}
   {A comprehensive (SI) units package}
 \msg_new:nnnn { siunitx } { incompatible-package }
   { Package~'#1'~incompatible. }
@@ -675,7 +675,9 @@
   }
 \cs_new_protected:Npn \__siunitx_complex_parse_polar:nn #1#2
   {
-    \siunitx_number_parse:nN {#1} \l__siunitx_complex_mag_tl
+    \bool_if:NTF \l_siunitx_number_parse_bool
+      { \siunitx_number_parse:nN {#1} \l__siunitx_complex_mag_tl }
+      { \tl_set:Nn \l__siunitx_complex_mag_tl { \ensuremath {#1} } }
     \group_begin:
       \keys_set:nn { siunitx }
         {
@@ -695,7 +697,9 @@
 \tl_new:N \l__siunitx_complex_unit_tl
 \cs_new_protected:Npn \siunitx_complex_number:n #1
   {
-    \bool_if:NTF \l__siunitx_complex_force_polar_bool
+    \bool_lazy_and:nnTF
+      { \l__siunitx_complex_force_polar_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \use:e
           {
@@ -728,7 +732,9 @@
   }
 \cs_new_protected:Npn \__siunitx_complex_number:nn #1#2
   {
-    \bool_if:NTF \l__siunitx_complex_force_cartesian_bool
+    \bool_lazy_and:nnTF
+      { \l__siunitx_complex_force_cartesian_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \exp_args:Ne \siunitx_complex_number:n
           { \__siunitx_complex_convert_cartesian:nn {#1} {#2} }
@@ -740,7 +746,9 @@
   }
 \cs_new_protected:Npn \siunitx_complex_quantity:nn #1#2
   {
-    \bool_if:NTF \l__siunitx_complex_force_polar_bool
+    \bool_lazy_and:nnTF
+      { \l__siunitx_complex_force_polar_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \use:e
           {
@@ -771,7 +779,9 @@
   }
 \cs_new_protected:Npn \__siunitx_complex_quantity:nnn #1#2#3
   {
-    \bool_if:NTF \l__siunitx_complex_force_cartesian_bool
+    \bool_lazy_and:nnTF
+      { \l__siunitx_complex_force_cartesian_bool }
+      { \l_siunitx_number_parse_bool }
       {
         \exp_args:Ne \siunitx_complex_quantity:nn
           { \__siunitx_complex_convert_cartesian:nn {#1} {#2} }
@@ -940,14 +950,23 @@
 \cs_new_protected:Npn \__siunitx_complex_format_polar:n #1
   {
     \tl_if_blank:nTF {#1}
-      { \siunitx_number_process:NN \l__siunitx_complex_mag_tl \l__siunitx_complex_mag_tl }
       {
-        \use:c
-          { __siunitx_complex_format_polar_ \l_siunitx_quantity_prefix_mode_tl :n } {#1}
+        \bool_if:NT \l_siunitx_number_parse_bool
+          { \siunitx_number_process:NN \l__siunitx_complex_mag_tl \l__siunitx_complex_mag_tl }
       }
+      {
+        \bool_if:NTF \l_siunitx_number_parse_bool
+          {
+            \use:c
+              { __siunitx_complex_format_polar_ \l_siunitx_quantity_prefix_mode_tl :n } {#1}
+          }
+          { \__siunitx_complex_format_polar_input:n {#1} }
+      }
     \tl_set:Nx \l__siunitx_complex_tmp_tl
       {
-        \siunitx_number_output:N \l__siunitx_complex_mag_tl
+        \bool_if:NTF \l_siunitx_number_parse_bool
+          { \siunitx_number_output:N \l__siunitx_complex_mag_tl }
+          { \exp_not:V \l__siunitx_complex_mag_tl }
         \exp_not:V \l__siunitx_complex_symbol_angle_tl
         \mathord % TEMP
         \exp_not:V \l__siunitx_complex_angle_tl
@@ -979,7 +998,8 @@
   }
 \cs_new_protected:Npn \__siunitx_complex_format_polar_input:n #1
   {
-    \siunitx_number_process:NN \l__siunitx_complex_mag_tl \l__siunitx_complex_mag_tl
+    \bool_if:NT \l_siunitx_number_parse_bool
+      { \siunitx_number_process:NN \l__siunitx_complex_mag_tl \l__siunitx_complex_mag_tl }
     \siunitx_unit_format:nN {#1} \l__siunitx_complex_unit_tl
   }
 \cs_new:Npn \__siunitx_complex_convert_cartesian:nn #1#2
@@ -4739,7 +4759,6 @@
               \cs_set:Npn \mathord ##1
                 { \__siunitx_print_text_replace_first:N ##1 }
               \group_begin:
-                \cs_set:Npn \pm { \: \exp_not:N \textpm \: }
                 \tl_map_inline:nn
                   { \mp \approx \sim \ge \le \geq \leq \gg \ll \angle }
                   {
@@ -4746,13 +4765,11 @@
                     \cs_set:Npn ##1
                       { \exp_not:N \ensuremath { \exp_not:N ##1 } }
                   }
-                \cs_set:Npn \cdot { \: \exp_not:N \textperiodcentered \: }
                 \cs_set:Npn \sqrt ##1
                   {
                     \exp_not:N \ensuremath
                       { \exp_not:N \sqrt { \exp_not:N \text {##1} } }
                   }
-                \cs_set:Npn \times { \: \exp_not:N \texttimes \: }
                 \protected at edef \l__siunitx_print_tmp_tl
                   { \exp_after:wN \__siunitx_print_text_replace_first:N \l__siunitx_print_tmp_tl }
               \exp_args:NNNV \group_end:
@@ -4783,6 +4800,12 @@
         { \exp_not:N \__siunitx_print_text_sub:n }
       ^
         { \exp_not:N \__siunitx_print_text_super:n }
+      \exp_not:N \cdot
+        { \exp_not:N \: \exp_not:N \textperiodcentered \exp_not:N \: }
+      \exp_not:N \pm
+        { \exp_not:N \: \exp_not:N \textpm \exp_not:N \: }
+      \exp_not:N \times
+        { \exp_not:N \: \exp_not:N \texttimes \exp_not:N \: }
       \exp_not:N \q_recursion_tail
         { ? }
       \exp_not:N \q_recursion_stop
@@ -5750,7 +5773,7 @@
         + \box_wd:N \l__siunitx_table_tmp_box
       }
       {
-        \box_use:N \l__siunitx_table_uncert_box
+        \hbox_unpack:N \l__siunitx_table_uncert_box
         \tl_if_blank:nF {#2#5}
           { \siunitx_print_number:n {#4#5} }
         \__siunitx_table_fil:



More information about the tex-live-commits mailing list.