treyhunner / resume

LaTeX resume format
MIT License
267 stars 132 forks source link

Bibtex Support #1

Open thilinarmtb opened 8 years ago

thilinarmtb commented 8 years ago

@treyhunner : Thank you very much for the awesome CV template. I have been using your template for some time now.

Recently, Some of the work I did got published and now I need to add them to my CV. I played with your template a bit but couldn't figure out how to add the publications with bibtex (Of course I can add a Reference section with citations but I need to add them under a rSection).

I will be really grateful if you can give some pointers on how to do this.

pfg666 commented 7 months ago

Perhaps this will help others, if not the OP. What worked for me is using the package bibentry, which allows me to add references to notable publications inside a section. Below is an example:

\newcommand{\entry}[1]{\cite{#1} \bibentry{#1}}
\begin{rSection}{Publications}
        %\let\thefootnote\relax\footnote{Particularly notable publications marked with \ding{42}.}
    \bibliographystyle{alpha}
    \nobibliography{publications}
    \item \entry{PUB1}
    \smallskip{}
    \item \entry{PUB2}
    \smallskip{}
\end{rSection}

P.S., Thanks @treyhunner for your Latex template, which I have happily used for 6 years now.