如何在LaTeX的部分页面更改字体大小?

我想改变一些页面部分的文本大小,例如逐字块:

\begin{verbatim} <how to set font size here to 10 px ? /> \end{verbatim} 

问候

 \begingroup \fontsize{10pt}{12pt}\selectfont \begin{verbatim} % how to set font size here to 10 px ? \end{verbatim} \endgroup 

例:

 \Large\begin{verbatim} <how to set font size here to 10 px ? /> \end{verbatim} \normalsize 

\Large可明显被下列之一所取代:

 \tiny \scriptsize \footnotesize \small \normalsize \large \Large \LARGE \huge \Huge 

如果你需要任意字体大小:

  • 如何在LaTeX中获得任意字体大小?

使用包\usepackage{fancyvrb}允许在Verbatim中定义fontsize参数:

 \begin{Verbatim}[fontsize=\small] print "Hello, World" \end{Verbatim} 

您可以指定的字体大小是常见的

 \tiny \scriptsize \footnotesize \small \normalsize \large \Large \LARGE \huge \Huge 

http://en.wikibooks.org/wiki/LaTeX/Formatting

改用\alltt环境。 然后使用与外部逐字环境相同的命令设置大小。