I am writing my thesis and the font size of the chapter title is defined in the class of the document. Somehow I cannot make bigger than \fontsize{60}{70}. Even if I write \fontsize{3000}{70} I cannot observe any difference.
Is there a way to change it?
Thanks
My code (in the class file):
% 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@
}}



\documentclass{...}and ending with\end{document}. – Mar 06 '15 at 16:2260/70seriously? That's really large! You should see a lot of warnings in your.logfile – Mar 06 '15 at 16:23\usepackage{lmodern} \usepackage{graphicx}in the middle of your chapter heading definition? How can that not give multiple errors? – David Carlisle Mar 06 '15 at 16:26lmodernwith some large sizes: `\documentclass{article} \usepackage{lmodern}\newcommand\Enlarge[2]{{\fontsize{#1}{#2}\selectfont test}} \begin{document}
\Enlarge{60}{72} \Enlarge{120}{144}\par \Enlarge{500}{600}
\end{document}`
– Gonzalo Medina Mar 06 '15 at 16:26\usepackagelines have to be at the top level so they execute before the document starts. They can not be in the definition of\chapter. – David Carlisle Mar 06 '15 at 16:44\scshape \bfis the same as\bfdid you intend\scshape \bfserieswhich specifies bold caps and small caps (which is not available in all font families)? – David Carlisle Mar 06 '15 at 17:14\NeedsTeXFormat{LaTeX2e} \ProvidesClass{thesis}
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{report}}
\ProcessOptions
\LoadClass{report} and finish with % end of file: \endinput
– Pepi Mar 06 '15 at 18:40\@makechapterheaddefinition in the question but the errors it generates are basically unrelated to the question in the title. – David Carlisle Mar 06 '15 at 18:48\@makechapterheadso this is a guess about whatthesismight be doing.) – cfr Mar 07 '15 at 01:51reportandbook– David Carlisle Mar 07 '15 at 09:28