我想更改某些页面部分的文本大小,例如逐字逐句:
\begin{verbatim}
<how to set font size here to 10 px ? />
\end{verbatim}
问候
Answers:
\begingroup
\fontsize{10pt}{12pt}\selectfont
\begin{verbatim}
% how to set font size here to 10 px ?
\end{verbatim}
\endgroup
fontsize
是要切换到的字体大小,第二个参数是要使用的行距
例:
\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
如果需要任意字体大小:
包的使用\usepackage{fancyvrb}
允许在Verbatim中定义fontsize参数:
\begin{Verbatim}[fontsize=\small]
print "Hello, World"
\end{Verbatim}
您可以指定的字体大小是常见的
\tiny
\scriptsize
\footnotesize
\small
\normalsize
\large
\Large
\LARGE
\huge
\Huge
要添加确切的字体大小,可以使用以下命令。对我有用,因为在我的情况下,预定义范围(大,细)与我所需的字体大小不匹配。
\fontsize{10}{12}\selectfont This is the text you need to be in 10px
http://en.wikibooks.org/wiki/LaTeX/Formatting
使用\alltt
环境代替。然后使用与外部逐字记录环境相同的命令设置大小。
px
→pt
,也许?