We are using the enumerate in the following form
\begin{enumerate}[leftmargin=*,label=\bfseries${\textbf{{C}}}_\arabic*$.]
\item
\end{enumerate}
Which produces out-put as C_1, C_2, ...
But we want the out-put as C_8, C_9, ...
How can we do it?
`, they'll be marked as code, as can be seen in my edit. You can also highlight the code and click the "code" button (with "{}" on it). – Guido Feb 2 at 9:57labelby deleting spurious commands and braces. With thestepoption as mentioned by Guido, you can write\begin{enumerate}[leftmargin=*,label=$\textbf{C}_\arabic*$.,start=8]. – hpesoj626 Feb 2 at 10:07