修改字体大小包

修改字体大小包

我需要创建一个文档,理想的输出是 12pt calibri 字体和 1.5 行距。创建的 pdf 似乎使用字体\footnotesize 大小而不是设置的 12pt。因此,我认为这是由 caption 包引起的,但是当我删除这些行时,我得到了相同的输出,这与预期的输出不同。我按此顺序使用以下规范和包。

\documentclass[12pt]{report}

\def\magyarOptions{defaults=hu-min}
\usepackage[magyar]{babel}
\usepackage[a4paper, right=25mm, left=25mm, top=25mm, bottom=25mm]{geometry}
\usepackage{setspace}
\usepackage{mwe}
\usepackage{tabularx}
\usepackage{caption}
\captionsetup{font=footnotesize}
\usepackage{booktabs}
\usepackage{xurl}
\usepackage{graphicx}
\usepackage{adjustbox}
\usepackage{longtable}
\graphicspath{ {./images/} }

\renewcommand{\figurename}{Ábra}
\renewcommand{\contentsname}{Tartalomjegyzék}
\renewcommand{\listfigurename}{Ábrajegyzék}

\usepackage{color}   %May be necessary if you want to color links
\usepackage{hyperref}
\hypersetup{
    colorlinks=true, %set true if you want colored links
    linktoc=all,     %set to all if you want both sections and subsections linked
    linkcolor=black,  %choose some color if you want links to stand out
}

\usepackage{titlesec}

\titleformat{\chapter}
  {\Large\bfseries} % format
  {}                % label
  {0pt}             % sep 
  {\huge}           % before-code

\renewcommand{\baselinestretch}{1.5}
\usepackage{fontspec}
\setmainfont{calibri.ttf}[BoldFont= calibrib.ttf ,ItalicFont = calibrii.ttf ,BoldItalicFont = calibriz.ttf]



\usepackage{mathtools} 
\usepackage{amsmath} 
\usepackage{amssymb}
\usepackage{fancyhdr}



\pagestyle{fancy}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\arabic{section}.\ #1}}


\fancyhead{}
\fancyhead[L]{\leftmark}
\fancyhead[R]{\rightmark}

\fancyfoot{}
\fancyfoot[C]{\thepage}

\begin{document}
\pagenumbering{roman}


\input{fejezetek/Címlap}
\small\tableofcontents
\footnotesize\listoffigures
\listoftables  
\chapter{Bevezetés}
\pagenumbering{arabic}
\input{fejezetek/intro}
\chapter{Hedonikus modellezés}
\input{fejezetek/Elmelet}
\chapter{Gépi tanulás és az ökonometria}
\input{fejezetek/gepi}
\chapter{A vizsgált terület}
\input{fejezetek/location}
\chapter{Adatbázis}
\input{fejezetek/adatbazis}
\chapter{Szakirodalom összefoglaló}
\input{fejezetek/szakirodalom}
\chapter{Következtetések, Várakozások}
\input{fejezetek/varakozas}
\chapter{Modellek}
\input{fejezetek/modell}
\chapter{Összefoglalás}
\input{fejezetek/Osszefoglalas}
\chapter{Irodalomjegyzék}
\input{fejezetek/ref}
\chapter{Függelék}
\input{fejezetek/fugg}
\end{document}

答案1

\small\tableofcontents

从那一刻起适用\small于整个文档。如果目的只是将其应用于目录,那么

{\small\tableofcontents}

相似地

{\footnotesize\listoffigures}

相关内容