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