2

I included the \usepackage{CoverPage} in my document but I have no idea in inserting my data entries.

1 Answers1

3

As per the CoverPage package documentation, you need to provide a BiBTeX file. So if you main file is called TeX-SE.tex (as in this example), then you need to provide a TeX-SE.BibTeX.txt file. Once you do that then you automatically get a cover as:

enter image description here

Notes:

  • The filecontents package was used to set up a file to read for this test case. It is not needed in you actual use case.

Code:

\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}

Peter Grill
  • 223,288