公司名称不单独一行

公司名称不单独一行

我正在尝试获取此 Latex 代码的输出,但是,如果我使用相对字体大小,我的公司名称将不会出现在一行中\Huge

\documentclass[14pt]{article}
\usepackage{pagecolor,lipsum}

\begin{document}    

\title{%
 \Huge BANGALORE MATHEMATICAL INSTITUTE \\
  \large Coaching for IIT-JEE/NEET/KVPY/OLYMPIADS}

\author{Director: G Ekaveera Kumar}

\maketitle
\pagecolor{cyan!30!yellow}
\end{document}

答案1

如果14pt是基本文档字体大小,那么在启用相对字体大小的情况下,字符串“Bangalore Mathematical Institute”根本无法放在一行中\Huge。允许的最大相对字体大小是\huge,如下例所示。请注意,我还将全大写标题更改为小写,因为我认为全大写文本很难阅读。

在此处输入图片描述

\documentclass[14pt]{extarticle}
\begin{document}    
\title{%
   \huge
   \makebox[0pt]{\textsc{Bangalore Mathematical Institute}}\\[4ex]
   \Large 
   Coaching for IIT-JEE/NEET/KVPY/\textsc{Olympiads}}
\author{Director: G Ekaveera Kumar}
\maketitle
\thispagestyle{empty}
\end{document}

相关内容