I just stumbled upon this weird problem using siunitx. I'm doing my report (mandatory in IEEE style), and it seem the micro prefix is giving me this strange t, inside a tabular environment.
I specified in the preamble how I wanted the \per option to be like, as a division line.
On W10 through texstudio and XeLaTeX
\begin{table}[h]
\renewcommand{\arraystretch}{1.3}
\caption{the caption}
\label{tab:ref-of-my-table}
\centering
\begin{tabular}{ll*{1}{S}l}
\toprule
{A} & {B} & {Value} & {Unit}\\
\midrule
AA & & 0.46 & \unit{\volt} \\
BB & & 0.6 & \unit{\volt} \\
EE & & 115 & \unit{\uA \per \volt \squared} \\
GG & & 40 & \unit{\micro \ampere \per \volt \squared} \\
Slew rate & & & \\
Voltage swing IN & & & \\
Voltage swing OUT & & & \\
\bottomrule
\end{tabular}
\end{table}
and the output is
The document and preamble
\documentclass[conference,a4paper,10pt,twocolumn,twoside]{IEEEtran}
%\IEEEoverridecommandlockouts
% The preceding line is only needed to identify funding in the first footnote. If that is unneeded, please comment it out.
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\interdisplaylinepenalty=2500 % IEEE 2 col break multiline equations
\usepackage{algorithmic}
\usepackage[italian]{babel}
\usepackage{subcaption} %
\usepackage{float}
\usepackage{subfloat}
\usepackage{placeins} %
\usepackage{graphicx}
\graphicspath{./images}
\usepackage{stfloats}
\usepackage{tikz}
\usepackage[european]{circuitikz}
\usetikzlibrary{matrix,calc}
\usepackage{siunitx}
\sisetup{
inter-unit-product =\ensuremath{{}\cdot{}},
display-per-mode = fraction ,
inline-per-mode = symbol, %% Division is "/"
table-number-alignment = center,
table-figures-integer = 1,
table-figures-decimal = 2,
}
\usepackage{textcomp}
\usepackage[T1]{fontenc}
\usepackage{pifont}
\usepackage{multirow}
\usepackage{threeparttable}
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\begin{document}
%% Some IEEE set up, title, author, abstract
%% Usual template stuff for IEEEtran type of document
\section{my first section}
%% Some paragraphs about my report
%% The table in question
\begin{table}[h]
\renewcommand{\arraystretch}{1.3}
\caption{the caption}
\label{tab:ref-of-my-table}
\centering
\begin{tabular}{ll*{1}{S}l}
\toprule
{A} & {B} & {Value} & {Unit}\
\midrule
AA & & 0.46 & \unit{\volt} \
BB & & 0.6 & \unit{\volt} \
EE & & 115 & \unit{\uA \per \volt \squared} \
GG & & 40 & \unit{\micro \ampere \per \volt \squared} \
Slew rate & & & \
Voltage swing IN & & & \
Voltage swing OUT & & & \
\bottomrule
\end{tabular}
\end{table}
%% bib file still need to be imported
\end{document}


\documentclass{IEEEtran}but that worked fine and shows μ characters. So please edit your question with the full code that produces the wrong output. – Marijn Apr 16 '23 at 19:35\usepackage[T1]{fontenc}with XeLaTeX, remove that and the output is fine. – Marijn Apr 16 '23 at 19:44fontspecinstead of via a package, so remove alsotextcompandpifontand use something like\usepackage{fontspec} \usepackage{unicode-math} \setmainfont{TeX Gyre Termes} \setmathfont{TeX Gyre Termes Math}to get a Times New Roman variant (TeX Gyre in this case, if you don't have that font installed then there are a few other options like Liberation Serif or FreeSerif). – Marijn Apr 16 '23 at 20:10