我正在准备一份技术报告,除了列出作者之外,我还希望报告中写上类似“由某某为 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
包以获得文本区域的视觉指南。