在表格环境、LaTeX 中有效转义_
如何仅在表格环境中转义下划线而不使用 \_
?
这个线程一般讨论下划线。 我无法逐字使用环境,也无法使用包下划线。
示例数据
\begin{tabular}{| l | l | p{5cm} |}
\hline
delete_a_question.php&poistaa kysymyksen&setterit \\ \hline
edit_question.php&muokkaa kysymyst\"{a}&getterit, HTML koodin generointia \\ \hline
--cut--
\end{tabular}
How can you escape underscores only in the tabular environment without the use of \_
?
This thread discusses about underscore in general.
I cannot use the environment verbatim nor the package underscore.
Sample data
\begin{tabular}{| l | l | p{5cm} |}
\hline
delete_a_question.php&poistaa kysymyksen&setterit \\ \hline
edit_question.php&muokkaa kysymyst\"{a}&getterit, HTML koodin generointia \\ \hline
--cut--
\end{tabular}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
underscore 包 不是手动使用 catcodes 进行黑客攻击它为您服务,以便
_
在文本中作为打印下划线工作,同时在数学模式下仍充当下标修饰符。只需加载包即可。Rather than hacking with catcodes manually, the underscore package does it for you so that
_
works in text as a printed underscore, while still behaving as a subscript modifier in maths mode. Just load the package.在这里,我更改了下划线字符的类别代码,使其处于活动状态(这意味着我可以给下划线一个宏定义)。我定义下划线字符来输出实际的下划线字符。
\bgroup
和\egroup
限制了重新定义下划线字符的效果。Here, I change the category code of the underscore character so that it is active (this means that I can give the underscore a macro definition). I define the underscore character to output an actual underscore character.
The
\bgroup
and\egroup
limit the effects of redefining the underscore character.