由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
TeX版 - 问个大小写的问题
相关主题
罗马数字 I 怎么表示?A question about footnote
latex的table of contents怎样加上preamble部分,并用罗马数what is the problem?
标题的大小写怎么确定呢?how to put a footnote on a chapter title?
[合集] 问个latex的问题(关于fancyheader)怎么控制表格里行的高度?
问个draft选项的问题section number interferes with fig label?
如何修改ieee的referece numbering stylea problem of page layout
why section name not shown up in toc如何实现这个公式
怎么指定top, bottom和左右的margins?用listing引入C代码,怎么让关键字BOLD?
相关话题的讨论汇总
话题: abc话题: uppercase话题: lowercase话题: box
进入TeX版参与讨论
1 (共1页)
s*******i
发帖数: 40
1
有些conference得style file 里面 默认section 得title都是大写的
我想把其中一个单词换成小写
应该用什么命令阿?
多谢!
T*******n
发帖数: 493
2
The style file probably uses \MakeUppercase{...} to force
the letters into uppercase. You should be able to override
it by fixing the letters in lowercase in a saved box then
use that box in the title. Whatever you put in a saved box
cannot be split a across a line break.
\documentclass{minimal}
\begin{document}
\newsavebox{\abc}
\savebox{\abc}{abc}
\MakeUppercase{abc} % this will be changed to uppercase
\MakeUppercase{\usebox{\abc}} % this stays in lowercase
\end{document}

【在 s*******i 的大作中提到】
: 有些conference得style file 里面 默认section 得title都是大写的
: 我想把其中一个单词换成小写
: 应该用什么命令阿?
: 多谢!

s*******i
发帖数: 40
3
谢谢!

【在 T*******n 的大作中提到】
: The style file probably uses \MakeUppercase{...} to force
: the letters into uppercase. You should be able to override
: it by fixing the letters in lowercase in a saved box then
: use that box in the title. Whatever you put in a saved box
: cannot be split a across a line break.
: \documentclass{minimal}
: \begin{document}
: \newsavebox{\abc}
: \savebox{\abc}{abc}
: \MakeUppercase{abc} % this will be changed to uppercase

1 (共1页)
进入TeX版参与讨论
相关主题
用listing引入C代码,怎么让关键字BOLD?问个draft选项的问题
请问tabular里面的一个格子里如何能够换行呢?谢谢!如何修改ieee的referece numbering style
如何去掉Chapter之间的空白页?why section name not shown up in toc
Question about latex.怎么指定top, bottom和左右的margins?
罗马数字 I 怎么表示?A question about footnote
latex的table of contents怎样加上preamble部分,并用罗马数what is the problem?
标题的大小写怎么确定呢?how to put a footnote on a chapter title?
[合集] 问个latex的问题(关于fancyheader)怎么控制表格里行的高度?
相关话题的讨论汇总
话题: abc话题: uppercase话题: lowercase话题: box