如何將腳註大小設為 10 以及如何設定基本行距?

如何將腳註大小設為 10 以及如何設定基本行距?

我正在寫論文,要求我使用 12 號字體(Times New Roman)作為正文,並使用 8-10 號字體作為腳註。所需行間距為 1.5。腳註也應使用基本行距。我不確定我是否已經擁有這些。有人能幫忙嗎?這是我的乳膠代碼

\documentclass[12pt, a4paper, leqno]{article}
\usepackage{a4wide}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{appendix}
\usepackage{float, afterpage, rotating, graphicx}
\usepackage{epstopdf}
\usepackage{longtable, booktabs, tabularx}
\usepackage{fancyvrb, moreverb, relsize}
\usepackage{eurosym, calc}
\usepackage{amsmath, amssymb, amsfonts, amsthm, bm}
\usepackage{newtxtext,newtxmath}
\usepackage{caption}
\usepackage{mdwlist}
\usepackage{xfrac}
\usepackage{setspace}
\usepackage{xcolor}
\usepackage{subcaption}
\usepackage{minibox}
\usepackage{makecell}
\renewcommand{\theadfont}{\normalsize}
\usepackage{geometry}
\geometry{
 left=3cm,
 right=2cm,
 top=2cm,
 bottom=2cm,
}
\usepackage[unicode=true]{hyperref}
\hypersetup{
    colorlinks=true,
    linkcolor=black,
    anchorcolor=black,
    citecolor=black,
    filecolor=black,
    menucolor=black,
    runcolor=black,
    urlcolor=black
}
\widowpenalty=10000
\clubpenalty=10000
\setlength{\parskip}{2ex}
\setlength{\parindent}{0ex}
\setstretch{1.5}
\usepackage[backend=bibtex]{biblatex}
\addbibresource{refs.bib}

\begin{document}


Say hi to latex......\footnote{latex hello}


\end{document}

答案1

以 12pt 字體為主,然後使用 10pt 字體設定腳註,這樣就可以了。

您可以像這樣取得目前的字體大小:

\documentclass...
\makatletter
\newcommand{\showfontsize}{{\f@size pt}}
\makeatother
\begin{document}
Some text\footnote{Footnote with a fontsize of \showfontsize}
\end{document}

你真的想要零嗎\parindent?當分頁符號處出現段落分隔符號時,讀者如何知道第二頁以新段落開頭?

相關內容