包含並理解包 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}

相關內容