我正在使用\section
命令,想将单词的两个字母改为小写。我该怎么做?我试过使用\small
命令,但它不会改变它。
\section{Writing and Reading Using \small{rs}EGFP's}
谢谢
答案1
你可能正在寻找\MakeLowercase
:
\section{Writing and Reading Using \MakeLowercase{rs}EGFP's}
答案2
我不确定我是否理解了你的问题,但我有一种感觉,你正在排版部分标题更小\MakeLowercase
比其周围环境要大。但是,如果您实际上希望强制将某些字符排版为大写或小写,请参阅@GonzaloMedina 的回答,以了解该命令(及其孪生命令)的使用示例\MakeUppercase
。
顺便说一句,该命令\small
不带参数,但会影响所有后续材料,直到\small
到达包含该命令的“组”末尾。因此,不要写\small{rs}
,而是{\small rs}
。因为节标题中使用的相对字体大小是\Large
,比 大两个等级\normalsize
,并且因为\small
比 小一个等级\normalsize
,所以使用该命令\small
会导致节标题中的文本比周围环境小三个(相对)等级。
如果您希望按一定步骤减小字体大小,而不需要知道当前使用的绝对字体大小,则可以使用包relsize
及其\smaller
命令\relsize{-2}
。以下 MWE 显示了如何做到这一点。
\documentclass{article}
\usepackage{relsize}
\begin{document}
\section*{Writing and Reading using rsEGFPs} % no change in size
\section*{Writing and Reading using {\smaller rs}EGFPs} % 1 step smaller
\section*{Writing and Reading using {\relsize{-2}rs}EGFP's} % 2 steps smaller
\section*{Writing and Reading using {\small rs}EGFPs} % 3 steps smaller
\end{document}
答案3
您想\lowercase{}
强制文本保持小写,因此这将是:
\section{Writing and Reading Using \lowercase{rs}EGFP's}