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

时间:2010-07-10 18:23:25

标签: latex

我想更改某些页面部分的文字大小,例如逐字阻止:

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

此致

5 个答案:

答案 0 :(得分:92)

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

答案 1 :(得分:51)

示例:

\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

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

答案 2 :(得分:12)

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

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

您可以指定的fontsize是常见的

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

答案 3 :(得分:1)

要添加确切的字体大小,可以使用以下命令。为我工作,因为在我的情况下,预定义范围(大,细)与我所需的字体大小不匹配。

\fontsize{10}{12}\selectfont This is the text you need to be in 10px

更多信息:https://tug.org/TUGboat/tb33-3/tb105thurnherr.pdf

答案 4 :(得分:0)

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

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