如何在标题页上插入版权行?

如何在标题页上插入版权行?

我是 LaTeX 新手。我想在我的电子书的标题页上插入版权信息。我希望它看起来像这样(位于页面中间):

Title,
Author,
Copyright (copyright symbol) 2013 by Author,
All Rights Rserved,
eISBN: 

以下是我迄今为止尝试过的方法。但是,我仍收到版权行错误。我之所以选择report这种方法,是因为它更接近电子书格式。在尝试阅读一些 LaTeX“基础知识”后,我得出了以下结论。

\documentclass[titlepage,a4paper,12pt]{report}
\begin{document}

\title{ebook title here}
\author{my name}
\Copyright \copyright\; 2013 my name\\
All Rights Reserved\\ 
\maketitlepage 

答案1

你可能不需要在书中标注日期,那么为什么不呢:

\documentclass[titlepage,a4paper,12pt]{report}
\begin{document}

\title{ebook title here}
\author{my name}
\date{\copyright\ 2013 my name\\
All Rights Reserved} 

\maketitle

\end{document}

在此处输入图片描述

相关内容