报告类别中章节中的作者和所属机构

报告类别中章节中的作者和所属机构

已编辑 我在报告课上写论文,应该为每一章显示单独的作者。虽然作者出现了,但他们并没有格式化为 authblk 格式。有人知道我可能做错了什么吗?我的主要 tex 的代码是

\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage[a4paper,width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{fancyhdr} 
\pagestyle{fancy}
\usepackage{babel}
\usepackage[style=english]{csquotes}
\usepackage[style=authoryear]{biblatex} 
\addbibresource{library.bib}
\usepackage{fixltx2e} 
\usepackage{titlesec}
  \titleformat{\chapter}[hang]
    {\normalfont\huge\bfseries}
    {\thechapter}{20pt}{\huge}
\usepackage{authblk}
\title{Something clever}
\author{Name}
\date{}

\begin{document}
\maketitle

\chapter*{Abstract}

\chapter*{Dedication}

\chapter*{Declaration}

\chapter*{Acknowledgment}

\tableofcontents 

\chapter{Introduction}
\input{Chapters/introduction} 

\chapter{Title of Chapter}
\input{Chapters/chap2}

\chapter{Title of Chapter}
\input{Chapters/chap3}

\chapter{Title of Chapter}
\input{Chapters/chap4}

\printbibliography

\end{document}``` 

While in the chapters the code is:
\title{something clever}
\author[1]{Name1}
\author[2]{Name2}
\author[1]{Name3}
\author[1]{Name4}
\affil[1]{af1}
\affil[2]{af2}
\date{}                     
\begin{abstract} 
\end{abstract}


答案1

我认为问题在于该\maketitle命令在文档中只能使用一次。如果我没记错的话,在第一次使用后,它会重新定义自己不执行任何操作。也许您可以定义自己的版本\maketitle,例如\mymaketitle,不执行此操作(在我的系统上,代码report.cls位于/usr/local/texlive/2019/texmf-dist/tex/latex/base),只需挑选相关位(您真的需要在章节标题后添加标题吗?)。

相关内容