LaTeX \newcommand \par 问题

发布于 2024-07-20 20:12:27 字数 272 浏览 5 评论 0原文

当我分配一个新命令并在 \par 开头调用它时,变量文本和下一个单词之间的空格丢失。

\newcommand{\testcmd}{这是一个测试}

\par \testcmd foobar.

将呈现为:

This is a testfoobar.

\par foo \testcmd 酒吧。

渲染良好为: foo 这是一个测试栏。

有人以前遇到过这个问题并有解决方案吗?

谢谢

When I assign a new command and call it at the beginning of a \par the space between the variable text and next word is missing.

\newcommand{\testcmd}{This is a test}

\par \testcmd foobar.

Will be rendered as:

This is a testfoobar.

\par foo \testcmd bar.

Renders fine as: foo This is a test bar.

Anyone come across this before and have a solution?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

凉城凉梦凉人心 2024-07-27 20:12:27

我不知道这里到底发生了什么,但有几种方法可以恢复该空间:

  1. \newcommand{\testcmd}{This is a test } % <- space before close brat
  2. par \testcmd{} foobar % <- note {}
  3. 最冗长但最强大的方法:

    \usepackage{xspace}

    \newcommand{\testcmd}{这是一个测试\xspace}

I do not know the exact thing which is going on here but there are several ways to get that space back:

  1. \newcommand{\testcmd}{This is a test } % <- space before closing brace
  2. par \testcmd{} foobar % <- note {}
  3. The most verbose but the most robust way too:

    \usepackage{xspace}

    \newcommand{\testcmd}{This is a test\xspace}

去了角落 2024-07-27 20:12:27

实际上,一个更简单的答案是:

\newcommand{\testcmd}{This is a test}

\par \testcmd \ foobar.

注意 foobar 之前额外的“\”(斜杠和空格)。 不需要额外的包。 它与最常见的方法相同,例如:

Mr.\ Smith
etc.\ and
Proc.\ Amer.\ Math.\ Soc.

Actually a much simpler answer would be to:

\newcommand{\testcmd}{This is a test}

\par \testcmd \ foobar.

Notice the extra "\ " before foobar (slash and space). No extra package needed. It is the same as the most common method for things like:

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