如何使用 siunitx 包排版采样率?

如何使用 siunitx 包排版采样率?

我想在我的文章中显示 1 GS/s(每秒 1 千兆样本)。如何使用 siunitx 包正确生成速率?

我认为一定有比更好的东西\SI{1}{GS/s}

我想写一些类似的内容 \SI{1}{\giga\sample\per\second},但是\sample在包中没有定义。

有关的:

答案1

手册第 12 页对此进行了描述siunitx

使用宏可生成新单元\DeclareSIUnit。< 符号 > 可包含文字输入、其他单元、多个前缀、幂和 \per,但文字文本不应与单元宏混合。可以使用 < 选项 > 从 理解的常用列表中创建单元siunitx,并仅应用特定单元宏。

% arara: pdflatex

\documentclass{article}
\usepackage{siunitx}
%\sisetup{per-mode=symbol} % for the slashed version.
\DeclareSIUnit{\sample}{S}

\begin{document}
I would like to write something like \SI{1}{\giga\sample\per\second}

Problem could arise if you need to give some numbers in \si{\siemens}
\end{document} 

在此处输入图片描述

相关内容