更改书籍字体大小

更改书籍字体大小

我的导师让我更改论文的字体大小,只更改字体大小,不更改字体类型。我不知道为什么什么都不起作用。我试过:

    \documentclass[13pt, twoside, openright]{book}

但似乎保留了 10pt 字体大小。这是我的代码的一部分:

\documentclass[13pt, twoside, openright]{book}
\linespread{1.3} 
\usepackage[textheight=\textheight,textwidth=\textwidth,bindingoffset=3cm,vcentering]{geometry}
\usepackage{enumitem}
\usepackage[greek,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{sectsty,lmodern}
\usepackage{float} 
\usepackage{media9}

\usepackage[backend=biber,style=numeric, defernumbers=true]{biblatex}

\addbibresource{bib/references.bib}

\graphicspath{ {img/} }
\chapternumberfont{\fontsize{20pt}{18pt}\selectfont}
\chaptertitlefont{\fontsize{20pt}{18pt}\selectfont}
\addtolength{\skip\footins}{2pc plus 2pt}
\usepackage{fancyhdr}
\usepackage[begintext=“, endtext=”]{quoting}
\quotingsetup{vskip=2pt}
\pagestyle{fancyplain}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyfoot[LE,RO]{\thepage}
\usepackage[citecolor=black]{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=blue,
    filecolor=magenta,      
    urlcolor=blue,
    bookmarks=true
}
\urlstyle{same}


\input{titlepage/Titlepage-Generic-Config}

\begin{document}
\frontmatter
\input{titlepage/Titlepage}
{
  \hypersetup{linkcolor=black}
  \clearpage
  \tableofcontents 
}

\mainmatter
\chapter*{Abstract}
...
\newpage
\printbibliography[keyword={biblio}, heading=bibintoc, title={Bibliography}]
\newpage
\printbibliography[keyword={site}, heading=bibintoc, title={Sitography}]

\end{document}

答案1

该类(和类memoir的超集)提供从 9pt 到 60pt 的字体大小选项。bookreport

关于您的 MWE,由于缺少titlepage文件,我无法正确运行它。但是,忽略这些,将类字体大小选项更改为 10pt 和 12pt 之间,在我添加一些普通(lipsum)文本后,文档中的字体大小会有所不同。

memoir我还与班级一起运行了我编辑的 MWE 版本

\documentclass[14pt, twoside, openright]{memoir}

可以简化为

\documentclass[14pt]{memoir}

twosideopenright默认选项之一。它确实出现了一个错误,即The secsty package does not work with this document class.该类为类似事物memoir提供了自己的方法。secsty

相关内容