LaTeX 在 Makeuppercase 环境中小写单个字母

发布于 2024-08-23 07:26:11 字数 94 浏览 1 评论 0原文

我正在使用 ACM 模板撰写一篇论文,该模板将章节标题中的每个字母大写。我想转义一个字母以使其小写,这可能吗?我尝试了 {p} ,就像将参考书目中的字母大写一样,但没有成功。

I am writing a paper using the ACM template which capitalizes every letter in the section title. I would like to escape a letter to make it lowercase, is this possible? I tried {p} as would be done to capitalize a letter in a bibliography with no luck.

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

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

发布评论

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

评论(3

骄傲 2024-08-30 07:26:12

有点偏离主题,但看看您是否可以说服您的 SIG 更改为 ACM SIGPLAN LaTeX 类 。它修复了许多在大约 10 年前强加给 ACM 成员的恐惧中严重损坏的事情。

Slightly off topic, but see if you can convince your SIG to change to the ACM SIGPLAN LaTeX class. It fixes a lot of things that are terribly broken in the horror that was foisted on ACM members some 10 years ago.

国粹 2024-08-30 07:26:12
\uppercase{xx \lowercase{x} yy}
\uppercase{xx \lowercase{x} yy}
樱花落人离去 2024-08-30 07:26:11

您可以使用 \lowercase{} 命令强制字母为小写,la:

\documentclass{article}
\newcommand{\showuc}[1]{\MakeUppercase{#1}}
\begin{document}
\showuc{Hello There} \\
\showuc{Hello \lowercase{T}here} \\
\showuc{Hello Th\lowercase{e}re}
\end{document}

如果这与 ACM 模板命令结合使用无效,您可以发布哪个 ACM 模板和哪个命令/你正在使用的环境?

You can use the \lowercase{} command to force a letter to be lowercase, a la:

\documentclass{article}
\newcommand{\showuc}[1]{\MakeUppercase{#1}}
\begin{document}
\showuc{Hello There} \\
\showuc{Hello \lowercase{T}here} \\
\showuc{Hello Th\lowercase{e}re}
\end{document}

If this isn't effective in conjunction with the ACM template command, could you post which ACM template and which command/environment you're using?

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