%EB%A1%9C%20%EC%84%B8%20%EB%B2%88%EC%A7%B8%20%EC%A4%84%EC%9D%84%20%EA%B5%B5%EA%B2%8C%20%ED%91%9C%EC%8B%9C%ED%95%A0%20%EC%88%98%20%EC%97%86%EB%8A%94%20%EC%9D%B4%EC%9C%A0%20.png)
저는 세 번째 줄에 있는 단어를 굵게 표시하려고 합니다. 아래 그림과 같이:
내 전체 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로 수학을 굵게 표시하는 것과 관련이 있습니다.