在表格环境、LaTeX 中有效转义_

发布于 2024-08-03 12:28:14 字数 483 浏览 5 评论 0原文

如何仅在表格环境中转义下划线而不使用 \_

这个线程一般讨论下划线。 我无法逐字使用环境,也无法使用包下划线。

示例数据

\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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七秒鱼° 2024-08-10 12:28:14

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.

不爱素颜 2024-08-10 12:28:14
\bgroup
  \catcode`\_=13%
  \def_{\textunderscore}%
  \begin{tabular}{|l|l|p{4.5cm}}
    test_444 & 555 & 4_4\\\hline
  \end{tabular}
\egroup

And now for some normal maths: $a_i=3$.

在这里,我更改了下划线字符的类别代码,使其处于活动状态(这意味着我可以给下划线一个宏定义)。我定义下划线字符来输出实际的下划线字符。

\bgroup\egroup 限制了重新定义下划线字符的效果。

\bgroup
  \catcode`\_=13%
  \def_{\textunderscore}%
  \begin{tabular}{|l|l|p{4.5cm}}
    test_444 & 555 & 4_4\\\hline
  \end{tabular}
\egroup

And now for some normal maths: $a_i=3$.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文