在技​​术报告的作者列表中添加“由...编写”和“为...公司...编写”

在技​​术报告的作者列表中添加“由...编写”和“为...公司...编写”

我正在准备一份技术报告,除了列出作者之外,我还希望报告中写上类似“由某某为 x 公司编写”的内容。(不必完全按照这个要求,只要大致这样就可以了。)

在 Latex 中,有什么好方法可以以这种方式列出作者?我相信有一种非常简单的方法可以做到这一点。

答案1

您可以使用标准命令\title\author\date\maketitle以及可能的titling包来自定义标题信息的外观。不过,我建议你titlepage从头开始设计自己的标题信息。越简单越好,所以你可以这样说:

在此处输入图片描述

代码:

\documentclass[titlepage]{report}
\usepackage{showframe}

\newcommand\PrepFor[1]{%
\par
\begin{minipage}{.5\textwidth}
\centering
\textit{Prepared for}\par\bigskip
#1
\end{minipage}\par
}
\newcommand\PrepBy[1]{%
\par
\begin{minipage}{.5\textwidth}
\centering
\textit{Prepared by}\par\bigskip
#1
\end{minipage}\par
}

\begin{document}

\begin{titlepage}
\centering

\null\vfill
\vfill

{\bfseries\Large
This is the title for the report;\par it will span several lines\par
}

\vfill

\PrepFor{Some Name \\ Address Line 1 \\ Address Line 2}

\vfill

\PrepBy{Some Name \\ Address Line 1 \\ Address Line 2}

\vfill

\today

\vfill
\vfill

\end{titlepage}

\end{document}

我刚刚加载了该showframe包以获得文本区域的视觉指南。

相关内容