我在设置 SI 单位中使用的希腊字母时遇到了麻烦。我需要为我的测量值设置单位microseconds
。但是,我在网上找到的任何解决方案都失败了。这是我的文档序言:
\documentclass[12pt,twoside,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[shorthands=off,czech]{babel}
\usepackage{csquotes}
\usepackage[style=iso-numeric]{biblatex}
\addbibresource{lab03.bib}
\usepackage{float}
\usepackage{lmodern}
\usepackage{graphicx}
\usepackage{attachfile}
\usepackage{subcaption}
\usepackage{cleveref}
\usepackage[document]{ragged2e}
\usepackage{textcomp}
\usepackage{gensymb}
\usepackage[shortlabels]{enumitem}
\usepackage{siunitx}
\sisetup{
detect-mode,
detect-family,
detect-inline-family=math,
group-separator={ },
group-minimum-digits={3},
output-decimal-marker={,}
}
\captionsetup[subfigure]{subrefformat=simple,labelformat=simple}
\renewcommand\thesubfigure{(\alph{subfigure})}
\title{Laboratorní úloha č.~2 \textemdash\ Výkonové polovodičové systémy\\ \large \emph{Měření na~napěťovém střídači}}
\author{Marek Poláček (POL0423)\\ VŠB \textendash\ Technická univerzita Ostrava\\ Fakulta elektrotechniky a~informatiky}
\date{\today}
基本上,\textmu
内部\si{}
显示μ
为ţ
。当我使用时\mu
,它会显示正确的字形,但倾斜,这是错误的。我需要直立的变体。直接放在μ
代码中会让事情变得更糟,它根本不显示。尝试使用textgreek
包,根本没有帮助。我这里的选择已经用完了,我需要尽快完成它。
请问我做错了什么?