我仍在努力苏尼尔·帕特尔的论文模板.zip为写作做好准备。我刚刚克服了unicode 问题现在需要确保模板的排队与我的大学风格要求
- 利润:左侧 3 厘米,右侧 2.5 厘米,顶部 2.5 厘米,底部 2.5 厘米
- 间距:1.5
- 字体大小:12 磅
- 字体: 英语字体格式一种
- 脚注:单倍行距,字体大小:10 pt
具体位置我是否需要进行这些更改(如果确实需要更改的话)?
例如,我grep'ed(这*。压缩的内容) 为了 ”利润“并得到以下列表:
章节/Chapter1.tex
补丁文件
缺少软件包/fancyhdr.sty
缺少软件包/subfigure.sty
缺少软件包/caption.sty
缺少软件包/natbib.sty
缺少包裹/listings.sty
缺少软件包/vmargin.sty
论文目录
加上一些日志文件。
附言: 如果你碰巧知道一个替代模板它看起来与 Sunil 的类似,并且可能(甚至更加)适合初学者,请告诉我。
答案1
我不太确定这是否会破坏其他包中 \footnotesize 的某些用途,但到目前为止它仍然有效:
\documentclass[12pt]{article} %Font size set to 12pt
\usepackage[left=3cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry} %Margins set
\usepackage[onehalfspacing]{setspace} %Linespacing to 150%
\usepackage{fontspec} %%%% Requires XeLaTeX, not LaTeX
\setmainfont{Times New Roman} %Set Times New Roman as the main font
\renewcommand{\footnotesize}{\fontsize{10pt}{10pt}\selectfont} %Sets the footnote in 10pt with single spacing
\usepackage{lipsum}
\begin{document}
\lipsum[1-30]
foobar\footnote{\lipsum[31]}
\lipsum[32-40]
\end{document}
注意:这使用了fontspec
包,它需要xelatex
或而lualatex
不是latex
。如果您不能使用其中一个引擎,则必须找到另一种使用 Times New Roman 的方法。其余代码与此无关,恕我直言。
顺便说一句:如果您在文档中使用数学,您还应该相应地设置数学字体。对于xelatex
和,可以使用包和字体 XITS Mathlualatex
来实现。unicode-math