开发者

LaTeX lowercase a single letter in an makeuppercase environment

开发者 https://www.devze.com 2022-12-21 04:57 出处:网络
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开发者_如何学C make it lowercase, is this possible?I tried {p} as woul

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开发者_如何学C make it lowercase, is this possible? I tried {p} as would be done to capitalize a letter in a bibliography with no luck.


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?


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.


\uppercase{xx \lowercase{x} yy}
0

精彩评论

暂无评论...
验证码 换一张
取 消