我可以获得一些帮助来设置我的文档以满足我的作业的要求吗?

我可以获得一些帮助来设置我的文档以满足我的作业的要求吗?

• 使用 Arial 字体类型,字体大小 10(最小)

• 行距应为单倍或不大于 1.25 厘米

• 页边距应设置为 2.3 厘米

• 所有页面都应编号(底部页脚右侧)并包含您的学生编号(顶部页眉,右侧)

• 附上标题页。其中应包括您的姓名、学生编号和导师姓名。

作业显然是打算用 word 写的,但我已经写了太多 LaTeX 了,我觉得用它写更舒服。LaTeX 甚至支持 Arial 作为字体吗?哈哈

谢谢你的帮助 :D

答案1

Helvetica 字体看起来与 Arial 几乎相同,因此它可能最容易使用。这是我在这里使用的。字体相当大,所以我通过加载选项将其缩小了一点scaled。我还加载了mathptmxtextgreek包,以防您需要一些衬线或希腊字母。

您还可以使用该\headrulewidth参数;将其设置为0pt以便完全删除规则。

\documentclass[12pt]{article}

\usepackage{fancyhdr,lipsum}

% font packages 
\usepackage{mathptmx}
\usepackage[scaled=0.87]{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[artemisia]{textgreek}

\usepackage[margin=2.3cm]{geometry}

% smaller section headings. You can use option 'tiny'
% to further reduce the size. 
\usepackage[small]{titlesec}

\pagestyle{fancy}
\fancyhf{} % Clear the header and footer
\fancyfoot[R]{\thepage}
\fancyhead[R]{007}

% if you don't like the rule at the top, set this to 0pt
\renewcommand{\headrulewidth}{0.5pt}

\begin{document}

\section{Another day in paradise}
\lipsum[2]

Some sans-serif text \textrm{next to serif} and some 
\textGamma \textrho \textepsilon \textepsilon \textkappa\
to illustrate that the different fonts have sort of similar 
size now. 

\end{document}

在此处输入图片描述

如果您坚持使用 Arial 而不是 Helvetica,那么您应该能够使用 xelatex 引擎来实现。但是,只有字体爱好者才会知道其中的区别,而且他们一开始就不会选择这两种字体。我经常使用同样的伎俩,但从未被发现过。(用 Times Roman 替换 Times New Roman 也是如此)。

相关内容