如何将脚注大小设置为 10 以及如何设置基本行距?

如何将脚注大小设置为 10 以及如何设置基本行距?

我正在写论文,论文要求我在正文中使用 12 号字体(Times New Roman),在脚注中使用 8-10 号字体。所需行距为 1.5。脚注也应使用基本行距。我不确定我是否已经拥有这些。有人能帮忙吗?这是我的 Latex 代码

\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?当在分页符处发生段落中断时,读者如何知道第二页以新段落开始?

相关内容