以下代码
%Nam scripta a cursus ad philosophíæ scientiae
\documentclass[12pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[left=2cm,right=5cm,top=3cm,bottom=2cm]{geometry}
\usepackage{lipsum}
\usepackage{marvosym}
\parindent0pt
\usepackage{lastpage}
%Header/Footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{Name \\
Institute \\
University, Country \\
Study Number \\
\Email
}
\rhead{Date: from \\ to}
\cfoot{Page \thepage\ of \pageref{LastPage}}
\begin{document}
\end{document}
教授指示
我的教授对于“一切看起来应该是什么样子”的要求非常严格。
- 没有头版
- 字体大小 12pt
- 传统字体类型(例如 Times 或 Platino)
- 行距 1.5
- 左边距 2cm,右边距 5cm
- 使用第 # 页,共 ## 页
- 标题中的个人信息
- 文档顶部的字数统计(不包括页眉、页脚和参考资料中的信息)
- 参考文献(书籍):作者、年份、书名(斜体)、出版地:出版商
- 参考文献(期刊文章):作者、年份、标题(引号内)、期刊名称、卷数、页码
代码问题
我的代码存在问题:正确放置页眉并获取带有“第 # 页,共 ## 页”的页脚。
我不知道如何:使用传统字体类型,定义行距,在文档顶部进行字数统计以及如何让 bibtex 使用这些特定的参考资料。
最后一个愿望:我希望在第一页和第二页(一列)上有一个居中的标题,并且在每个标题下方有两列文本。
希望您能帮助我。提前谢谢您。此致,Fröhlich
答案1
尚未完成,但目前已完成
- 次 -->
\usepackage{mathptmx}
- 带有页面进度的页脚-->
\fancyhf{}
首先清除这些字段,否则会很混乱。 \twocolumn
前两页的内容- 不知何故正确的名称标题
我不知道所需的参考文献和字数(目前)
%Nam scripta a cursus ad philosophíæ scientiae
\documentclass[12pt, a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[left=2cm,right=5cm,top=3cm,bottom=2cm,head=3cm]{geometry}
\usepackage{marvosym}
\usepackage{mathptmx} % Times
\usepackage{lastpage}
\usepackage{setspace}
\usepackage{blindtext}
\onehalfspacing
\parindent0pt
%Header/Footer
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\lhead{Ann Elk -- Ministry of Silly Walks \\
Cambridge, Great Britain -- Study 1 \\
[email protected]
}
\rhead{Date: from 1969\\ to 1974\\ }
\renewcommand{\headrulewidth}{0pt}% No head line
\cfoot{Page \thepage\ of \pageref{LastPage}}
\begin{document}
\pagestyle{fancy}
% First title
\twocolumn[\centering \large \bfseries The Theory on Brontosaurs]
\blindtext[3]
\clearpage
\twocolumn[\centering \large \bfseries The extended theory on Brontosaurs]
\blindtext[3]
\clearpage
\onecolumn
\blindtext[20]
\cite{Lam94}
% Not the correct style
\bibliographystyle{unsrt}
\bibliography{biblio} % Is found usually, it's a standard demo bib always included in TeX distribution
\end{document}