用于下划线文本和方框文本的命令

用于下划线文本和方框文本的命令

我如何为带有下划线文本的问题或带有文本的句子框创建两个命令。

这是一个示例:

在此处输入图片描述

使用下划线和方框的命令我现在可以这样写:

\question What is the synonym of \underline{Fun}?
\question What is the antonym of \boxed{Old}?

答案1

egreg 在他的评论中已经提供了您所需的一切。事实您不再需要定义这些命令。

您还提到了\boxed命令。顺便说一句,您也不必定义它。amsmath包中已经提供了它。不过,这只在数学环境中有效。

一次示威。

\documentclass{exam}

\usepackage{amsmath}

\begin{document}
\begin{questions}
\question What is the synonym of \underline{Fun}?
\question What is the antonym of \fbox{old}?
\question Can I use both \verb+\fbox{<>}+ and \verb+\boxed{<>}+ to box words? Perhaps $\boxed{4}$ or \fbox{$4$}?
\end{questions}
\begin{equation*}
\end{equation*}
\end{document}

输出

在此处输入图片描述

您可以通过阅读来查找这些命令的大部分内容以及其他许多内容LaTeX2e 的简短介绍或其他 LaTeX 指南。

相关内容