使用样式类创建文档封面

使用样式类创建文档封面

我想创建一个名为的乳胶类,该类应该创建下面的报告封面图像,其中包含以下生成的所有报告的页眉和页脚。 entrie 标签定义的字段应该是文件生成的变量(定义)、、、、、、。projeto.cls表格仅 出现\title {}在第一页。\subtitle{}\description{}\revision{} (xx)\date{}\description2{}\author{}.tex

我已经有以下源代码:.cls.tex

文件:projeto.cls

%文件:项目.cls
\ProvidesClass{proposta_projeto}[2014/06/03 v0.1 项目提案类]

\LoadClass[11pt,a4paper]{article} % 字体大小和纸张类型

%\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % 文档边距
\usepackage[margin=2cm,headheight=5\baselineskip,headsep=1\baselineskip,includehead]{几何}

\usepackage[brazilian]{babel}
\usepackage[utf8]{输入框}
\usepackage[T1]{fontenc}


\usepackage{tabularx}
\usepackage{graphicx}
\usepackage{多行}
\usepackage{最后一页}
\usepackage[iso, english]{isodate}




%----------------------------------------------------------------------------------------
% 标题命令:用于打印姓名和地址的命令
%----------------------------------------------------------------------------------------

\def\projeto#1{\def\@projeto{#1}} % 定义 \projeto 命令来设置名称
%\def\@projeto {} % 默认将 \@projeto 设置为空

\newcommand{\printprojeto}{\@projeto}

%----------------------------------------------------------------------------------------
% 打印标题行
%----------------------------------------------------------------------------------------



%% 设置 tabularx 环境的扩展和适应宽度。
\newlength{\headerwidth}
\setlength{\headerwidth}{\textwidth}
\newsavebox{\myheader}
\开始{lrbox}{\myheader}%
    \begin{minipage}[b]{\headerwidth}
    \renewcommand{\arraystretch}{1.29}%
    \begin{tabularx}{\headerwidth}{|@{}c@{}|X|c|c|}\hline
        \multirow{2}{*}{\includegraphics[scale=0.75]{image1.png}} & \centering\normalsize{教学方法} & \small{DOC Nº} & \small{MI.02} \\ \cline{2-4}
& \centering\large{项目提案} & \small{版本:} & \small{06} \\ \hline

\multirow{2}{*}{\includegraphics[scale=0.75]{image2.png}} & \multicolumn{1}{c|}{\multirow{2}{*}{\textbf{\LARGE{ > }}}} & \multicolumn{2}{c|}{\small{数据:08/10/13}} \\ \cline{3-4}
& & \multicolumn{2}{c|}{\small{页面:\thepage\ 来自 \pageref{LastPage} }} \\ \hline
    \结束{tabularx}

    \end{迷你页面}
\结束{lrbox}
%% 设置标题
\usepackage{fancyhdr}
\pagestyle{花式}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\lhead{}
\chead{\usebox{\myheader}}
\rhead{}
\lfoot{\small{RG-481}}
\cfoot{\small{修订:01}}
\rfoot{\small{数据:\shortromandate\today}}

以及文件“projeto.tex”

\documentclass{projeto} % 使用自定义 projeto.cls 样式
\title{>}
\subtitle{>}
\描述{>}
\修订{>}
\description2{>}
\日期{>}
\作者{>}
\开始{文档}
\section{第 1 节}
\section{第 2 节}
\结束{文档}

我怎样才能创建该文档?

模板

相关内容