用黑色粗体写出方程的步骤和编号

用黑色粗体写出方程的步骤和编号
a)estimate \, $\alpha$

b) estimate of $\rho$

3)estimate of $X_i$

并以黑色粗体显示方程式的编号

答案1

看一下enumitem允许自定义itemizeenumerate列表的内容:

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label=\textbf{\alph*)}]
\item estimate \, $\alpha$
\item estimate of $\rho$
\item[\textbf{3)}] estimate of $X_i$
\end{enumerate}

\end{document}

在此处输入图片描述

答案2

类似于 Jasper 的回答,从 更改为续列表,当以后\textbf{3)}真的有等等时,这会更简单。4)

\documentclass{article}
\usepackage{enumitem}

\begin{document}

\begin{enumerate}[label={\alph*)},font=\bfseries]
\item estimate \, $\alpha$
\item estimate of $\rho$
\end{enumerate}

\begin{enumerate}[label={\arabic*)},font=\bfseries,resume]
  \item estimate of $X_i$
  \end{enumerate}

\end{document}

在此处输入图片描述

相关内容