帮助将新标题元素集成到我提供的模板中

帮助将新标题元素集成到我提供的模板中

这里完全是新手。

目前,我正在写学徒期的期末论文。我有一个公司提供的模板,它已经提供了很多课程。但是,我的标题页需要有我的考生编号。如何使用类向文档添加新的标题元素bfhthesis

这是我的文件:

% define document class
\documentclass[
    report,               % paper format
    12pt,               % fontsize
    bibliography=totoc,   % If enabled add bibliography to TOC
    listof=totoc,         % If enabled add lists to TOC
    bilingual,
%   monolingual,
    BCOR=1mm,
    titleimage-ratio=34,
    ngerman,
]{bfhthesis}              % BFH Thesis Class

\begin{document}

    \frontmatter
    
    \title{title}
    \subtitle{subtitle}
    \author{surname name}
    \institution{institution}
    \department{department}
    \version{1.2}
    \titlegraphic{\includegraphics[width=\width]{img/titleimg.png}}
    \expert{surname name, surname name}
    
    %----------------  BFH tile page   -----------------------------------------
    \maketitle
    \pagenumbering{arabic} 
    
    
    %------------ TABLEOFCONTENTS ----------------
    \tableofcontents
    
    %------------ START MAIN PART ----------------
    \mainmatter
    
    \chapter{Abstract}
        lorem ipsum
\end{document}

答案1

目前还不清楚应在何处以及如何打印候选人编号。这里有一个有编号但没有标题的示例:

\documentclass[
    report,               % paper format
    12pt,               % fontsize
    bibliography=totoc,   % If enabled add bibliography to TOC
    listof=totoc,         % If enabled add lists to TOC
    bilingual,
%   monolingual,
    BCOR=1mm,
    titleimage-ratio=34,
    ngerman,
]{bfhthesis}              % BFH Thesis class
\begin{document}

    \frontmatter
    
    \title{title}
    \subtitle{subtitle}
    \author{surname name\newline candidate number}
    \institution{institution}
    \department{department}
    \version{1.2}
%    \titlegraphic{\includegraphics[width=\width]{img/titleimg.png}}
    \expert{surname name, surname name}
    
    %----------------  BFH tile page   -----------------------------------------
    \maketitle
    \pagenumbering{arabic} 
    
    
    %------------ TABLEOFCONTENTS ----------------
    \tableofcontents
    
    %------------ START MAIN PART ----------------
    \mainmatter
    
    \chapter{Abstract}
        lorem ipsum
\end{document}

作者姓名下方的候选人编号

如果您还想为其添加标题,我认为您必须更改 的定义\versioninformation。原始定义可以在 中找到bfhlayout.sty。但是,如果您被指示使用此类或模板,然后被要求偏离它,主管也应该能够告诉您如何做到这一点。

相关内容