我猜这是一个不寻常的问题,因为我没有找到任何相关内容(再说一次,也许我搜索得不好)。
所以我想要做的是让枚举(在投影仪幻灯片中)的尺寸尽可能平滑地变得越来越小。
目前我还没找到比下面更好的解决办法:
{\small my text is going smaller and }
{\footnotesize smaller and smaller and}
{\scriptsize smaller and smaller and }
{\tiny smaller and smaller and ...}
然而我不太喜欢它,因为它看起来真的像枚举中的单词“块”,而且一点也不流畅。(请注意,这里的跳行并不意味着渲染中的跳行)
有什么办法可以获得更好的消失效果吗?也许是我不知道的某个软件包可以提供更大的字体大小灵活性?
答案1
\RequirePackage{fix-cm}
\documentclass{article}
\makeatletter
\def\vanish#1{{\dimen@15pt\par\lineskip\p@\baselineskip\z@\@xvanish#1 * }}
\def\@xvanish#1 {%
\ifx*#1\par\else
{\fontsize{\dimen@}\z@\selectfont#1 }\[email protected]\dimen@\expandafter\@xvanish
\fi}
\makeatother
\begin{document}
\begin{minipage}{5cm}
\vanish{my text is going smaller and
smaller and smaller and
smaller and smaller and
smaller and smaller and
smaller and smaller and
smaller and smaller and \ldots} %
\end{minipage}
\end{document}