kjshen
kjshen
Hello, I used to be able to use ``` \SIrange[% exponent-to-prefix=true ,scientific-notation=engineering ,zero-decimal-to-integer=true ,range-units=repeat ]{100}{10000000}{\W} ``` and produce  However, I'm unable to reproduce this with the new options and...
The following minimal working example ``` \documentclass{article} \usepackage{minted} \setminted{autogobble} \begin{document} \begin{minted}[autogobble]{c} printf("hello, world"); \end{minted} \begin{minted}[gobble=4]{c} printf("hello, world"); \end{minted} \begin{minted}{c} printf("hello, world"); \end{minted} \end{document} ``` results in:  The first listing...