如何使用点零来改变增加的数字中的零?

如何使用点零来改变增加的数字中的零?

平均能量损失

\documentclass[a4paper,11pt]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}

\makeatletter
\newcommand*{\pmzerodot}{%
  \nfss@text{%
\sbox0{$\vcenter{}$}% math axis
\sbox2{0}%
\sbox4{0\/}%
\ooalign{%
  0\cr
  \hidewidth
  \kern\dimexpr\wd4-\wd2\relax % compensate for slanted fonts
  \raise\dimexpr(\ht2-\dp2)/2-\ht0\relax\hbox{%
    \if b\expandafter\@car\f@series\@nil\relax
      \mathversion{bold}%
    \fi
    $\cdot\m@th$%
  }%
  \hidewidth
  \cr
  \vphantom{0}% correct depth of final symbol
}%
  }%
}
\makeatother

\begin{document}

\chapter{Zero}
Normal 0
\section{Resistor}
\pmzerodot
\subsection{Dot Inside In Zero}
0 \pmzerodot
\begin{enumerate}
\item Zero
\end{enumerate}

\begin{table}[h]
\caption{Table}
\begin{tabular}{l}
0 \pmzerodot \\
\end{tabular}
\end{table}

\end{document}

但我想要做的是,我想从零更改为\pmzerodot,逐项列出并枚举数字、表格标题数字、标题数字、章节数字、页码......

在此处输入图片描述 在此处输入图片描述 在此处输入图片描述

当然我认为这是可能的。但我不知道该怎么做。我等待你的帮助。

相关内容