cms가 출력에 나타나는 이유는 무엇입니까?

cms가 출력에 나타나는 이유는 무엇입니까?

여기에 이미지 설명을 입력하세요

\usepackage{float}
\usepackage{bigstrut}
\usepackage{makecell}



\renewcommand\theadalign{bc}
\renewcommand\theadfont{\sfdefault}

\renewcommand\theadgape{\Gape[4pt]}
\renewcommand\cellgape{\Gape[4pt]}



\begin{table}[H]
  \centering
  \caption{Add caption}
    \begin{tabular}{r r}
    \hline
    \rowcolor{LightCyan}
    \thead{Emax/V \\ $\Delta$= $\pm$ 0 V}  & V2 (V) \bigstrut\\
    \hline
    1   & 2 \bigstrut\\
\end{tabular}
\end{table}

답변1

아마도 당신은 원할 것입니다

\renewcommand\theadfont{\sffamily}

그리고는 아니다

\renewcommand\theadfont{\sfdefault}

\sfdefaultcmss실제로 산세리프체를 사용하려면 글꼴 이름/식별자(여기 )가 필요합니다 \sffamily.

cmss 없이 코드 출력

\documentclass{article}
\usepackage{float}
\usepackage{bigstrut}
\usepackage{makecell}
\usepackage[table,svgnames]{xcolor}
\usepackage{siunitx} % for typesetting units and numbers with units

\renewcommand\theadalign{bc}
\renewcommand\theadfont{\sffamily}
\renewcommand\theadgape{\Gape[4pt]}
\renewcommand\cellgape{\Gape[4pt]}

\begin{document}
\begin{table}[H]
  \centering
  \caption{Add caption}
    \begin{tabular}{r r}
    \hline
    \rowcolor{LightCyan}
    \thead{Emax/V \\ $\Delta= \pm 0$\,V}  & V2 (V) \bigstrut\\
    \thead{Emax/V \\ $\Delta= \SI[detect-family]{+-0}{\volt}$}  & V2 (V) \bigstrut\\ % siunitx-alternative
    \hline
    1   & 2 \bigstrut\\
\end{tabular}
\end{table}
\end{document}

관련 정보