Theses, Books, Title pagesCopernicus Bilbiography Master Thesis template

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
ugo
Posts: 3
Joined: Fri Jun 02, 2017 11:47 am

Copernicus Bilbiography Master Thesis template

Post by ugo »

Hi all,
I am using the template http://www.latextemplates.com/template/ ... ral-thesis (first one on the list, made by Vel).

I would like to change the bibliography style from the default one to "Copernicus" style (http://publications.copernicus.org/for_ ... ation.html). My bibliography is in "example.bib".

I have added the copernicus. bst, .cls and .cfg from "https://www.overleaf.com/gallery/tagged ... TBYaTLgi-k".
I have put at the end of the main.text:
--------
\bibliographystyle{copernicus}
\bibliography{example.bib} and {example}
--------

the error is "Package biblatex Error: '\bibliographystyle' invalid." I guess this is because I use:
"\usepackage[backend=bibtex,style=authoryear,natbib=true]{biblatex}"
but when I remove it and "\addbibresource{example.bib}"

the error is:
./main.aux:5:
Undefined control sequence.
l.5 \abx@aux@sortscheme

I wonder if this is because the template does not supports bibtex, or if it is me that do not find the way to do it.

Do you have any solution ?
Thank you,

Ugo

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Copernicus Bilbiography Master Thesis template

Post by Stefan Kottwitz »

Hi Ugo,

welcome to the forum!

Remove the .aux file and then compile again. It should be a setting in the .aux file that remained after you changed a biblatex option, causing the issue afterwards.

Stefan
LaTeX.org admin
ugo
Posts: 3
Joined: Fri Jun 02, 2017 11:47 am

Copernicus Bilbiography Master Thesis template

Post by ugo »

Hi Stefan,

Thank you for your answer, removing the .aux file helps, but still my "copernicus" style is not recognised. When putting the following lines:
---------
\usepackage[backend=bibtex,style=copernicus,natbib=true]{biblatex}
\addbibresource{example.bib}

\printbibliography[heading=bibintoc]
--------------
I get the error:
----------
/usr/share/texlive/texmf-dist/tex/latex/biblatex/biblatex.sty:11962: Package bi blatex Error: Style 'copernicus' not found. See the biblatex package documentation for explanation. Type H <return> for immediate help. ... l.11962 \RequireBibliographyStyle{\blx@bbxfile}
----------

I guess that this is because the copernicus style is not found. However is the same place where there is my main text I have added the copernicus.bst. By the way I am using Overleaf.

Thanks,
Ugo
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Copernicus Bilbiography Master Thesis template

Post by Johannes_B »

You are confusing two completely different and incompatible ways to automatically create a bibliography with LaTeX. Some explanations linked here.

If you want to pubish with Copernicus do not use the found template, but their own template.

Note: Using the older BibTeX system with natbib and copernicus.bst works perfectly fine.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
ugo
Posts: 3
Joined: Fri Jun 02, 2017 11:47 am

Copernicus Bilbiography Master Thesis template

Post by ugo »

Hi Johannes,

Indeed I was confusing.
Otherwise, the option:
-------------
\usepackage{natbib}

\bibliographystyle{copernicus}
\bibliography{example.bib}
-----------
works.

Thank you
Post Reply