将报告的全局字体大小设置为 13pt

将报告的全局字体大小设置为 13pt

我目前正在撰写博士论文。根据我所在大学的论文格式指南,字体大小应为 13 磅。论文文档类别设置为报告,仅接受10pt11pt作为12pt输入。

现在我发现此解决方案,这似乎解决了我的问题。我添加了两个建议的命令:\fontsize{13}{\baselineskip}\selectfont,但我的文档中的字体大小没有变化。我做错了什么?

如果有帮助,我已在下面添加了我的文档布局。添加的行位于 的开头%Styles


\documentclass[12pt,twoside, openright]{report}

%Packages
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
%\usepackage[utf8]{inputenc}
\usepackage{graphicx}
%\usepackage{anyfontsize}
\usepackage[T1]{fontenc}
\usepackage{libertine}
\usepackage{sectsty}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{fancyhdr}
\usepackage[backend=biber, style=apa]{biblatex}
\usepackage[english]{babel}
\usepackage{xcolor}
\usepackage{pdfpages}
\usepackage{setspace}

%Paths
\graphicspath{ {images/} }
\addbibresource{references.bib}

%Styles

%Added lines
\fontsize{13}{\baselineskip} 
\selectfont

%Existing style commands
\allsectionsfont{\sffamily}
\onehalfspacing 
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Thesis title}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{Author}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\raggedbottom

%Thesis information
\title{Thesis Title}
\author{Author Name}
\date{\today}

%Document start
\begin{document}

答案1

Koma-script 允许你将主字体设置为任意大小,并适当缩放其他尺寸。你可以更改

\documentclass[12pt,twoside, openright]{report}

要么

\documentclass[twoside, openright, fontsize=13pt]{scrreprt}

或者

\documentclass[twoside, openright]{report}
\usepackage[fontsize=13pt]{scrextend}

为了向后兼容,有一组固定的旧选项,例如10pt12pt。标准文档类不接受任意字体大小:11.5pt13pt不起作用。

libertine软件包应该能够很好地处理缩放。但是,您应该删除fontenc。该libertine软件包已在现代引擎上加载fontspec,或者在旧引擎上设置编码。您也可以考虑libertinus

相关内容