研讨会论文的布局;对齐、字体、大小、间距

研讨会论文的布局;对齐、字体、大小、间距

我刚开始上大学并决定用 Word 来写论文、毕业论文等等。

但我对可能最简单的事情有一些问题...我得到了这个模板: 这是模板

我必须将布局更改为以下标准:

DIN A4 边距:左:2.5cm,右:3cm,上:2.5cm,下:2.5cm 字体:衬线字体,例如 Times New Roman 大小:12pt,表格、脚注等为 10pt 间距:1 1/2 和脚注中的 1 文本必须对齐。

% Präambel
\documentclass[11pt,a4paper,oneside,
liststotoc, % Tabellen- und Abbildungsverzeichnis ins Inhaltsverzeichnis
bibtotoc, % Literaturverzeichnis ins Inhaltsverzeichnis aufnehmen
titlepage, % Titlepage-Umgebung statt \maketitle
headsepline, % horizontale Linie unter Kolumnentitel
%abstracton, % Überschrift beim Abstract einschalten, Abstract muss dazu in {abstract}-Umgebung stehen
DIV12, % auskommentieren, um den Seitenspiegel zu vergrößern
%BCOR6mm, % Bindekorrektur, die den Seitenspiegel um 6mm nach rechts verschiebt,
]{scrreprt}

\usepackage{ucs} % Dokument in utf8-Codierung schreiben und speichern
\usepackage[utf8x]{inputenc} % ermöglicht die direkte Eingabe von Umlauten
\usepackage[english]{babel} % deutsche Trennungsregeln und Übersetzung der festcodierten Überschriften
\usepackage[T1]{fontenc} % Ausgabe aller zeichen in einer T1-Codierung (wichtig für die Ausgabe von Umlauten!)
\usepackage{graphicx} % Einbinden von Grafiken erlauben
%\usepackage{amsmath}
%\usepackage{amsfonts}
%\usepackage{amssymb}
\usepackage{mathpazo} % Einstellung der verwendeten Schriftarten
\usepackage{textcomp} % zum Einsatz von Eurozeichen u. a. Symbolen
\usepackage{listings} % Datstellung von Quellcode mit den Umgebungen {lstlisting}, \lstinline und \lstinputlisting
\usepackage{xcolor} % einfache Verwendung von Farben in nahezu allen Farbmodellen
\usepackage[intoc]{nomencl} % zur Erstellung des Abkürzungsberzeichnisses
\usepackage{fancyhdr} % Zusatzpaket zur Gestaltung von Fuß und Kopfzeilen
\usepackage[a4paper, left=2.5cm, right=3cm, top=2.5cm, bottom=2.5cm]{geometry} % Hier die Seitenränder einstellen
\usepackage{showframe}
\usepackage{setspace}
\onehalfspacing
%\renewcommand*{\chapterheadstartvskip}{\vspace*{-\topskip}}
\renewcommand*{\chapterheadstartvskip}{\vspace*{-1.1cm}} % Vertikalerabstand top

我使用几何图形将站点布局设置为 DIN A4 并设置边距。对于 1 1/2 间距,我使用了 \onehalfspacing。在 documentclass 中,我得到了 11pt,因为 12pt 看起来太大了……对于衬线字体,我使用了 \fmfamily。

这些更改正确吗?如何使用对齐文本以及如何在 Word 中使用正确大小的字体(如 12pt/Times New Roman)?

答案1

您已经成功了一半。以下代码应该可以满足您的要求。请参阅我代码中的注释以获取解释。


在此处输入图片描述


\documentclass[12pt]{scrreprt}
% The "12pt" class option sets \normalsize to 12pt and \footnotesize to 10pt.
% If not modified, the font size in footnotes will correspond to \footnotesize.

\usepackage[a4paper, left=2.5cm, right=3cm, top=2.5cm, bottom=2.5cm]{geometry}

\usepackage{mathptmx}   % loads Times New Roman
\usepackage{setspace}   % for interline spacing
\onehalfspacing         % interline spacing of 1.5 in main text, 1 in footnotes 

\usepackage{lipsum}     % dummy text

% Here, I redefine \tabular to automatically switch to
% \footnotesize within the scope of a tabular environment.
\let\oldtabular\tabular
\renewcommand{\tabular}{\footnotesize\oldtabular}

\begin{document}
\chapter{Foo bar}

An outline of intellectual rubbish%
\footnote{Man is a rational animal, so at least I have been told.
    Throughout a long life, I have looked diligently for evidence
    in favour of this statement, but so far,
    I have not had the good fortune to come across it.%
}

\lipsum[1-5]

\begin{table}
\centering
\begin{tabular}{|c|c|c|}
    \hline
    hello & see ya & bye\\
    \hline
\end{tabular}
\caption{Foobar}
\end{table}

\end{document}

相关内容