包含括号和下划线的粗体文本

包含括号和下划线的粗体文本

我想要加粗,例如,配置_C2B()。使用 \textbf 时我收到错误消息,因此我尝试使用 \verb 包装文本,但仍然失败。

\documentclass[draft]{article}
\usepackage{fontspec}
\usepackage{hyperref}
\usepackage{listings}

\begin{document}
\lstset{language=Rexx, extendedchars=true, frame=trbl}

\section{Statement of problem}

\subsection{Primary Problem}

With single braces \textbf{\verb|Config_C2B()|}

With double braces \textbf{{\verb|Config_C2B()|}}

\end{document}

答案1

\_如果您想输入下划线,请使用:

\documentclass{article}

\begin{document}
With single braces \textbf{Config\_C2B()}
\end{document}

在此处输入图片描述

顺便说一下,您不能\verb在另一个宏的参数内使用它(并且\verb无论如何都会将字体重置为非粗体 tt 系列),所以\textbf{\verb|stuff|}无法工作。

相关内容