I'm using the CurVe document class. Here is a minimal working example:
fav_book.tex:
\begin{rubric}{My Favourite Book}
This is my favourite book~\cite{fav}
\end{rubric}
biblography.tex:
\begin{thebibliography}{}
\bibitem{fav} Thor, A.U., 2017. \textit{Best book ever}. 1st ed. London: Best Publishers.
\end{thebibliography}
CV.tex:
\NeedsTeXFormat{LaTeX2e}
\documentclass[a4paper,12pt]{curve}
\begin{document}
\makerubric{fav_book}
\makerubric{bibliography}
\end{document}
This comes out looking like this:
How can I rename 'List of Publications' to 'References' (because in my case, I don't wish it to be my own publications).
I may be looking for 'name macros' depending on how CurVe works.
