首页 > 代码库 > Latex字体大小设置

Latex字体大小设置

  Latex写论文时候经常遇到字体设置的问题。Latex字体分为:

\Huge
\huge
\LARGE
\Large
\large
\normalsize (default)
\small
\footnotesize

  \scriptsize

  \tiny

此命令均可以分别使用来设置字体大小。另外,字体设置又分为局部设置和全局设置两种,局部设置有:

% inline
{\Large This is some large text\par}
 
% environment
\begin{footnotesize}
...

  \end{footnotesize}

全局设置有:

\documentclass[12pt]{report}以及

%Article
\documentclass[9pt]{extarticle}
%Report
\documentclass[14pt]{extreport}等等。这些设置并不是只有一种方法,而是有多种方法,均可以尝试。




本文出自 “云淡风轻” 博客,请务必保留此出处http://htlbydgod.blog.51cto.com/9829379/1602721

Latex字体大小设置