我怎样才能获得比 \fontsize{60}{70} 更大的字体大小?

我怎样才能获得比 \fontsize{60}{70} 更大的字体大小?

我正在写论文,章节标题的字体大小是在文档类中定义的。不知何故,我无法将其设置为大于\fontsize{60}{70}。即使我写,\fontsize{3000}{70}我也看不到任何差异。有办法改变它吗?

谢谢

我的代码(在类文件中):

% Numbered chapter heading style:
\renewcommand{\@makechapterhead}[1]{%
  {\singlespacing
    \parindent \z@ \raggedleft \normalfont

    \vspace*{5mm}%  
    \ifnum \c@secnumdepth >\m@ne
    \usepackage{lmodern}
\usepackage{graphicx}
    \fontsize{120}{60} \selectfont \scshape \bf \textsc \space \thechapter         % Chapter followed by number
    \par\nobreak
    \fi
    \interlinepenalty\@M
    \vspace{20mm}%  
    \huge \scshape \bf #1\par                                                            % chapter title
    \rule{\textwidth}{1pt}                                                                                  %horizontontal line                     
    \nobreak
   \vskip 40\p@
  }}

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{lmodern}

\begin{document}

one {\fontsize{5cm}{6cm}\selectfont two}

\end{document}

答案2

请注意,如果您使用 选择字体大小\fontsize,然后使用常规字体大小命令(例如)\huge,您将恢复正常huge大小。这可能不是问题,因为我无法想象您也试图将章节标题设为这么大,但由于您的问题很难弄清楚,也许这可能会有用。

例如:

\documentclass{article}

\usepackage{lmodern}

\begin{document}

  \fontsize{60}{70}\selectfont enormous

  \huge merely huge

\end{document}

巨大与仅仅巨大

请注意,正如评论中所指出的,\bf已被弃用并被撤消。如果有的话,将会切换到粗体小型大写字母(不寻常)。\scshape\scshape\bfseries

请注意,这\textsc{}不是字体切换,但需要一个参数。

因此,如果您只是说\textsc没有花括号,下一个标记将是小型大写字母 - 通常是一个字母。比较:

  \textsc abc

  \textsc{abc}

  {\scshape abc}

字体形状命令

相关内容