我正在创建一个简单的教程文件来参加研讨会。我的问题是:我想获得输出“\textbf
用于使字体变粗”。我该怎么做?同样,我也想对其他一些关键字\textit
以及所有其他关键字进行同样的操作...
如果问题是,我也%
可以使用\%
但是在这里,我想要\textbf
打印在pdf
。
答案1
您可以像这样使用命令\verb##
和环境:verbatim
\documentclass{article}
\begin{document}
\verb#\textbf# is used to make the font bold, for example i could write:
\verb#\textbf{This Is Boldface!}#, resulting in \textbf{This Is Boldface!}
When you have multiple lines of code, it is best to use environment \verb#verbatim#:
\begin{verbatim}
\begin{verbatim}
\textbf{} %is used to make the font bold
\textbf{} %is used to make the font bold
\textbf{} %is used to make the font bold
\textbf{} %is used to make the font bold
\end{verbatim}\vskip-10pt
\verb#\end{verbatim}#
\end{document}
当你有多行代码时,最好使用环境verbatim
。
答案2
listings
如果不提及此目的,它将是不完整的。
\documentclass{article}
\usepackage{listings}
\lstset{ %
language={[LaTeX]TeX},
basicstyle=\small\ttfamily,
}
\begin{document}
\lstinline{\textbf} is used to make the font \textbf{bold}
\lstinline{\textit} is used to make the font \textit{italic}
\end{document}
答案3
\documentclass{article}
%\usepackage[T1]{fontenc}
\begin{document}
Hi! you can do:
\texttt{\textbackslash textbf} is used to make the font \textbf{bold}
\texttt{\textbackslash textit} is used to make the font \textit{italic}
or:
\textbackslash\texttt{textbf} is used to make the font \textbf{bold}
\textbackslash\texttt{textit} is used to make the font \textit{italic}
\end{document}
嗨!看看上面这个:越简单越好?我脑子里有这个解决方案,把它写下来,我可以欣赏它与没有包裹(提供T1
使用的编码,感谢@egreg)。
附录:如果你打算多次使用它,那么为什么不制作一个newcommand
:
\documentclass{article}
%\usepackage[utf8]{inputenc}\usepackage[T1]{fontenc}
\newcommand{\mact}[1]{\texttt{\textbackslash #1}}
\begin{document}
Hi again! you can just do:
\mact{textbf} is used to make the font \textbf{bold}
\mact{textit} is used to make the font \textit{italic}
\end{document}
希望能帮助到你!