I have a problem with
\SIlist
macro. The desired result:
and I'm using this code:3.23 (dd, J = 3.9, 0.9 Hz, 1H).
Code: Select all
\num{3.23} (dd, \emph{J} = 3.9, \SI{0.9}{\Hz}, 1H).
Code: Select all
\num{3.23} (dd, \emph{J} = \SIlist[list-units=single,list-final-separator = {, }]{3.9;0.9}{\Hz}, 1H)
A list of three or more values works OK:3.23 (dd, J = 3.9 and 0.9 Hz, 1H)
Code: Select all
\num{3.23} (ddd, \emph{J} = \SIlist[list-units=single,list-final-separator = {, }]{3.9;0.9;0.1}{\Hz}, 1H)
Any ideas? Thank you.3.23 (dd, J = 3.9, 0.9, 0.1 Hz, 1H)
Minimal demo file attached.
siunitx version 2013/02/01 v2.5p.
Win7, MiKTex 2.9
Also posted on {TeX} SX.
Edit:
Problem already solved. That was quick, Joseph. Thank you.
You need to use
list-pair-separator={, }
when two numbers are listed.