BibTeX, biblatex and biberA (such?) complicated CV

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

A (such?) complicated CV

Post by latexforever »

Hello,

I'm just writing my CV with the currvita package. I simply want to put my bibliography, which is in a file, named main.bib, at the end of the document.
I've tried lots of solutions, read multibib, currvita, and bibunits packages, but I can't understand why it does not work.

Here is my MWE:

Code: Select all


\documentclass{article}
\usepackage[latin1]{inputenc}
%\usepackage{frbib}
\usepackage{multibib}
\usepackage[openbib,TextAligned]{currvita} %,ManyBibs,
\usepackage[english]{babel}
%\usepackage{utopia}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage[usenames,dvipsnames]{pstricks}
\usepackage{epsfig}
%\usepackage{pst-grad} % For gradients
%\usepackage{pst-plot} % For axes
\usepackage{textcomp} % For degrees
\usepackage{pstricks}
\usepackage{pst-plot}
\usepackage{pst-text}
\usepackage{pst-tree}
\usepackage{pst-eps}
\usepackage{pst-fill}
\usepackage{pst-node}
\usepackage{pst-math}
\usepackage{amsthm}

\begin{document}


\bibliographystyle{alpha}
%\bibliographystylebooks{unsrt}
%\bibliographystylepapers{plain}

\begin{cv}{Long version}

\end{cv}

\bibliographystyle{siam}
%\bibliographystyle{frplain}
%\bibliographystyle{alpha}
\bibliography{main}

What can I do?
I want to say that the code I have written is a ``mix'' of many possibilities. Anyway, even the indications of the package do not work well.
Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

A (such?) complicated CV

Post by localghost »

latexforever wrote:[…] What can I do? […]
Insert \nocite{*} right before your bibliography (or somewhere else in the code) and run BibTeX on your document.


Best regards
Thorsten¹
latexforever
Posts: 120
Joined: Fri Nov 14, 2008 9:40 pm

Re: A (such?) complicated CV

Post by latexforever »

Thanks. In fact, this instruction was missing, as you said. I don't understand why I forgot that one!

Thanks.
Post Reply