I am trying to bold the word in my third line. as shown in figure below:
My full MWE is as below:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amssymb}
\begin{document}
\renewcommand{\labelitemi}{$\blacksquare$}
\renewcommand{\labelitemii}{$\square$}
\renewcommand{\labelitemiii}{\textendash}
\begin{itemize}
\item \textbf{First Line}
\begin{itemize}
\item \textbf{Second Line}
\begin{itemize}
\item \textbf{\(H_{1,1}\):} No bold starting here Third Line
% \item {\textbf{\(H_{1,2}\):}} There
\end{itemize}
\end{itemize}
\end{itemize}
\end{document}
I had tried:
\item \textbf{\(H_{1,1}\):} No bold starting here Third Line
and
\item {\textbf{\(H_{1,2}\):}} There


biblatexsince this tag is not related to the question. I have addedsymbolsandmath-modeinstead. – leandriis Dec 25 '19 at 14:28\documentclass{article} \begin{document} \textbf{\(H_{1,2}\):} \end{document}since the problem is not related toitemize. (As also stated by Arnaud). – leandriis Dec 25 '19 at 14:31\(H_{1,2}\is not math symbols. I had tried\usepackage{amsbsy}and$\boldsymbol{\(H_{1,1}\)}$, not correct – aan Dec 25 '19 at 14:33\(starts and\)ends inline math mode See also: Are ( and ) preferable to dollar signs for math mode? – leandriis Dec 25 '19 at 14:37$\boldsymbol{\(H_{1,1}\)}$can not work. The$signs are not needed and\boldsymbolshould be used inside of\(and\). Instead\documentclass{article} \usepackage{amsmath} \begin{document} \(\boldsymbol{H_{1,2}}\)\textbf{:} \end{document}would be the way to go. – leandriis Dec 25 '19 at 14:40