我是否应该能够在 \textbf 中插入注释环境?

我是否应该能够在 \textbf 中插入注释环境?

因为某些原因,

\textbf{\begin{comment}X\end{comment}
Y}

无法编译,出现各种错误。在以下 MWE 中,错误是

扫描使用 \next 时文件结束。

\documentclass{article}
\usepackage{verbatim} 
\begin{document}
Works (X not shown): \begin{comment}X\end{comment}

Works (Y bold): \textbf{%
Y}

Does not compile: \textbf{\begin{comment}X\end{comment}
Y}
\end{document}

这是否不起作用?如果是,为什么?

答案1

解决方法:

\documentclass{article}
\usepackage{verbatim} 
\begin{document}

{\bfseries 
\begin{comment}
X
\end{comment} 
Y}

\end{document}

相关内容