如何在乳胶中输入粗体反斜杠?

如何在乳胶中输入粗体反斜杠?

我正在使用 beamer 制作演示文稿,我想在文本中添加粗体反斜杠,但\textbf{\textbackslash}似乎行不通,有人可以告诉我如何输入粗体反斜杠吗?代码如下:

\documentclass[xcolor=dvipsnames]{beamer} 
\usetheme{Boadilla}
\usecolortheme{beaver} 


\begin{document}

\begin{frame}{Differences in File-systems}
\begin{itemize}
\item (backslash) {\color{red}{\textbf{\textbackslash}}} in windows:\\ \vspace{5 mm}
\textbf{c:\textbackslash Documents and Settings\textbackslash Maria\textbackslash My Documents\textbackslash lec-1.doc}\vspace{5mm}
\item (forward slash) \textbf{{\color{red}{/}}} in linux: \\ \vspace{5 mm}
\end{itemize}
\end{frame}

\end{document}

答案1

您的问题很不清楚,但我从标签推测您正在使用 beamer。

\documentclass{beamer}


%\usepackage[T1]{fontenc}
%\showoutput
 \begin{document}
\begin{frame}
   \textbf{aaa\textbackslash}

  aaa \textbackslash 
\end{frame}
\end{document}

产生警告

LaTeX Font Warning: Font shape `OMS/cmss/bx/n' undefined
(Font)              using `OMS/cmsy/m/n' instead
(Font)              for symbol `textbackslash' on input line 11.

告诉您这\来自数学无衬线字体,并且 OT1 编码中没有粗体。

添加

\usepackage[T1]{fontenc}

警告消失并且您将获得:

在此处输入图片描述

如果你仔细观察(或查看 的输出\showoutput),则会发现\是粗体。

相关内容