乳胶转义字符
我想准备一个在 LaTeX 文档中使用的文本。
我编写了一个执行大量 REPLACE 操作的 SQL 函数。例如 _
-> \_
等等。
但有很多特殊字符,有时我会出错。有谁知道用于将文本转义为 LaTeX 的 SQL 函数或 Java 包吗?
I want to prepare a text for the use in a LaTeX document.
I wrote a SQL Function which does a lot of REPLACE
. For example _
-> \_
and so on.
But there are so many special chars and sometimes I get errors. Does anyone know a SQL-function or a Java package for escaping text to LaTeX?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只有 10 个特殊字符:
\ { } _ ^ # & $%~
。There are only 10 special chars:
\ { } _ ^ # & $ % ~
.使用
verbatim
环境或listings
包,然后您可以输入源代码而无需转义。Use a
verbatim
environment or thelistings
package, then you can enter source code without escaping.