包括并理解 CoverPage 包

包括并理解 CoverPage 包

我将其包含 \usepackage{CoverPage}在我的文档中,但我不知道如何插入我的数据条目。

答案1

按照CoverPage 包文档,您需要提供一个BiBTeX文件。因此,如果您的主文件被调用TeX-SE.tex(如本例所示),那么您需要提供一个TeX-SE.BibTeX.txt文件。一旦您这样做,您就会自动获得一个封面,如下所示:

在此处输入图片描述

笔记:

  • 包裹filecontents 用于设置要为此测试用例读取的文件。实际用例中不需要它。

代码:

\documentclass{article}

%\usepackage{filecontents}%% <--- Commented out to prevent overwriting this file
\begin{filecontents*}{TeX-SE.BibTeX.txt}
@article{small,
author = {Algosig},
title = {A small paper},
journal = {The journal of small papers},
year = 2014,
volume = {-1},
note = {to appear},
}
\end{filecontents*}


\usepackage{CoverPage}

\begin{document}
\end{document}

相关内容