%============================================================================== % cveoreport.tex - 通用技术报告 LaTeX 模板示例 %============================================================================== % 这是一个使用 cveoreport.cls 模板的标准示例文件 % % 使用方法: % 1. 将本文件重命名为 your_project_name.tex % 2. 修改下方的项目配置信息 % 3. 在 sections/ 目录下创建您的章节文件 % 4. 运行 lualatex 编译 % % 编译方式: % lualatex -interaction=nonstopmode your_project_name.tex % lualatex -interaction=nonstopmode your_project_name.tex % 运行两次以更新目录 % %============================================================================== \documentclass{cveoreport} %============================================================================== % 项目特定配置(请在此处修改您的项目信息) %============================================================================== % 封面信息定义 \renewcommand{\ptitle}{项目标题} \renewcommand{\psubtitle}{项目副标题说明} \renewcommand{\pauthor}{编制单位名称} \renewcommand{\pdate}{2026年1月} % PDF 元数据覆盖 \hypersetup{ pdftitle={项目标题}, pdfsubject={文档类型}, pdfkeywords={关键词1, 关键词2, 关键词3} } \begin{document} %============================================================================== % 封面页 %============================================================================== \makecover %============================================================================== % 目录 %============================================================================== \tableofcontents %============================================================================== % 示例章节 %============================================================================== \input{sections/section1} \end{document}