14

我真的不需要对默认文章文档类进行大量更改。我想要的是:

  • 重新定义页边距(我希望它们在所有页面上都相同,但与默认值不同);
  • 使用扉页;
  • 在标题页上添加更多元素(标题作者日期对我来说还不够,我希望公司和公司徽标也出现在标题页上);
  • 更改 section 、 subsections 和 subsubsections 的样式希望显示数字,否则 - 它们很好)。

也许,有一些软件包在这种情况下可能会有所帮助?

4

3 回答 3

15

有许多软件包可以帮助您实现所需的结果。我在下面选择的软件包是我喜欢的,但是有不止一种方法可以做到。

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{paulius-article}[2009/02/25 v0.1 Paulius' modified article class]

% Passes and class options to the underlying article class
\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
\ProcessOptions

% Load LaTeX's article class with the `titlepage' option so that \maketitle creates a title page, not just a title block
\LoadClass[titlepage]{article}

% Redefine the page margins
% TODO: Adjust margins to your liking
\RequirePackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}

% Remove the numbers from all the headings (\section, \subsection, etc.)
\setcounter{secnumdepth}{-1}

% To modify the heading styles more thoroughly use the titlesec package
%\RequirePackage{titlesec}

% Adjust the title page design
% NOTE: This is the default LaTeX title page -- free free to make it look like whatever you want.
% TODO: Add company name and logo somewhere in here.
\newcommand{\maketitlepage}{%
  \null\vfil
  \vskip 60\p@
  \begin{center}%
    {\LARGE \@title \par}%
    \vskip 3em%
    {\large
     \lineskip .75em%
      \begin{tabular}[t]{c}%
        \@author
      \end{tabular}\par}%
      \vskip 1.5em%
    {\large \@date \par}%       % Set date in \large size.
  \end{center}\par
  \@thanks
  \vfil\null%
  \end{titlepage}%
}

% This some before-and-after code that surrounds the title page.  It shouldn't need to be modified.  
% I've pulled out the part the actually typesets the title page and placed it in the \maketitlepage command above.
\renewcommand\maketitle{\begin{titlepage}%
  \let\footnotesize\small%
  \let\footnoterule\relax%
  \let \footnote \thanks%
  \maketitlepage%
  \setcounter{footnote}{0}%
  \global\let\thanks\relax
  \global\let\maketitle\relax
  \global\let\@thanks\@empty
  \global\let\@author\@empty
  \global\let\@date\@empty
  \global\let\@title\@empty
  \global\let\title\relax
  \global\let\author\relax
  \global\let\date\relax
  \global\let\and\relax
}

% TODO: If there are any other article modifications required, add them here.

% That's all, folks!
\endinput

您需要阅读几何包的文档以调整边距。如果你想修改标题的外观(除了关闭数字),可以使用titlesec包。

标题页是 LaTeX 的默认标题页。您需要对其进行修改以添加您的公司名称和徽标。我已经从与标题页相关的所有其他代码中分离出“要打印的东西”。您应该只需要更改\maketitlepage命令。在您的文档中,用于\maketitle打印标题页。

\documentclass{paulius-article}

\title{My New Document Class}
\author{Paulius}

\usepackage{lipsum}% provides some filler text

\begin{document}
\maketitle% Actually makes a title page

\section{Section Heading}
\subsection{Look no numbers!}
\lipsum[1-10]

\end{document}

如果我错过了您的任何要求,请告诉我。

于 2009-02-25T17:41:55.907 回答
10

你从

\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{classname}[2009/02/24]
\LoadClass{article}

并在此之后添加任何自定义。

更新:我建议您阅读 LaTeX2e 以供类和包编写者使用:PDFHTML。第 3 节(类或包的结构)中的示例应该会有所帮助。

于 2009-02-24T14:34:33.650 回答
6

有几点可能很有趣:

  • 您可以重新定义页眉中的边距(即在\begin{document}} 之前通过重置控制长度,如\setlength{\textwidth}{6.80in}\setlength{\oddsidemargin}{0.0in}等等。

  • \section*{...}已经给你未编号的部分了。对于\subsection*和 也是如此\subsubsection*。如果您确实使用了这个技巧并且还想要工作参考,您可以看看如何在 LaTeX 中发出参考的文本内容?.

  • 你看过titlepage环境吗?

但也许最重要的是,回忆录课程可以为您提供所需的所有控制权,而无需任何课程黑客攻击。查看文档

或者使用Can Berk Güder 的建议

于 2009-02-24T14:39:31.720 回答