如何更改脚注的大小以及更改参考部分的行距?

如何更改脚注的大小以及更改参考部分的行距?

我们学校的格式手册规定学期论文必须遵循以下格式。我不明白如何做到以下

  1. 尾注/脚注:单行间距;Times New Roman 字体 10
  2. 参考书目/参考文献:1 行间距;Times New Roman 字体 12
  3. 段落开头(标题后的第一段和前两级副标题除外):制表符设置为 0.3”

这是我的序言。任何帮助都将不胜感激

documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{fontspec}
\usepackage{titlesec}
\usepackage[left=1.5in,right=1in,top=1in,bottom=1in]{geometry}
\author{}
\setmainfont{Times New Roman}
\title{}


\begin{document}
\maketitle
\linespread{1.5}

\end{document}


答案1

请尝试以下方法:

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{times}
\usepackage[left=1.5in,right=1in,top=1in,bottom=1in]{geometry}
\usepackage{setspace} % can change interline spacing
\setlength{\parindent}{0.3in} % indentation of first line of a paragraph
\usepackage{lipsum} % lots of text
\begin{document}
\section{First}
First paragraph.\footnote{\lipsum[1]}

\lipsum[1]
  \subsection{Sub}
  First paragraph.

  \lipsum[2]

\bgroup % start a group in order to keep spacing change local
\onehalfspacing  % or \doublespacing?
Bibliography

Entry 1

Entry 2

\egroup % end the group
\end{document}

我真的非常希望有一个完整的 MWE(从\documentclass...end{document})来展示您尝试过的内容,这样我就不必浪费时间去想像您的文档通常是什么样子。请注意,以上内容是一个非常粗略的 MWE,尤其是关于“参考书目”的内容。

相关内容