itemize를 사용하면 \(H_{1,1}\)로 세 번째 줄을 굵게 표시할 수 없는 이유

itemize를 사용하면 \(H_{1,1}\)로 세 번째 줄을 굵게 표시할 수 없는 이유

저는 세 번째 줄에 있는 단어를 굵게 표시하려고 합니다. 아래 그림과 같이:

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

내 전체 MWE는 다음과 같습니다.

    \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}

나는 시도했다:

 \item \textbf{\(H_{1,1}\):} No bold starting here Third Line

그리고

\item {\textbf{\(H_{1,2}\):}} There 

답변1

\mathbf{}수학 표현식을 굵게 표시하려면 수학 표현식 내부(예: \( \mathbf{...} \)대신 ) 를 사용해야 합니다 \textbf{ \(...\) }.

아니면, 나쁜 방법은 "가난한 사람의 대담함"을 사용하는 것 입니다 \pmb{}.\textbf{}가짜용감한.

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath, 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 \( \mathbf{H_{1,1}} \): Math bold font in fourth Line
             \item \pmb{\(H_{1,1}\):} Poor man's bold in fifth Line
                %  \item {\textbf{\(H_{1,2}\):}} There 

\end{itemize}
\end{itemize}
\end{itemize}

\end{document}

이런 종류의 것을 얻으려면 :

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

굵은 콜론을 얻으려면 (:) 네 번째 줄에는 콜론을 안에 넣습니다 \ mathbf{}. 즉, 를 사용합니다 \( \mathbf{H_{1,1}:} \).

답변2

세 번째 항목이 되는 것과는 관련이 없지만 \textbf로 수학을 굵게 표시하는 것과 관련이 있습니다.

관련 정보