我发现了一个相关的旧的封闭帖子,但没有令人满意的答案。
我必须准备一份包含一些具体指导原则的文件。1) 字体应为 Arial 2) 标题应为 14pt 且加粗 3) 文档其余部分为 11pt
我认为 \Large 字体大小已经足够接近了(不过如果能精确一点就更好了)。但是,我无法获得粗体字体。uarial 有这个功能吗?斜体样式怎么样?
这是一个 mwe
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[scaled]{uarial}
\renewcommand*\familydefault{\sfdefault}
\begin{document}
\begin{center}
{\Large {\textbf{Should be Bold and 14pt}}}
\end{center}
\section{Section Heading}\label{sec:background}
Text here at 11pt \\
\emph{italic text}
\end{document}
答案1
看到不同:
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[scaled]{uarial}
\renewcommand*\familydefault{\sfdefault}
\begin{document}
\begin{center}
{\fontsize{14}{17}\selectfont \textbf{Should be Bold and 14pt}}\par
{\fontsize{14}{17}\selectfont Shouldn't be Bold but 14pt}\par
{\Large Shouldn't be Bold but 14pt}
\end{center}
\section{Section Heading}\label{sec:background}
Text here at 11pt
\end{document}