Je reprends ici l'idée de @pluton, en la combinant avec une que @joseph-tux avait postée (puis supprimée) en tant que commentaire ici. `biblatex` permet de spécifier 4 types de thèses :
- `bathesis` : An expression equivalent to the term ‘Bachelor’s thesis’.
- `mathesis` : An expression equivalent to the term ‘Master’s thesis’.
- `phdthesis` : The term ‘PhD thesis’, ‘PhD dissertation’, ‘doctoral thesis’, etc.
- `candthesis` : An expression equivalent to the term ‘Candidate thesis’. Used for ‘Candidate’
degrees that have no clear equivalent to the Master’s or doctoral level.
dont le dernier au moins est très peu usité en France et peut donc sans trop de problème est détourné de son usage initial :
\documentclass[french]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{filecontents}
\usepackage{csquotes}
\usepackage{biblatex}
\usepackage[french]{babel}
\usepackage{babel}
\addbibresource{database.bib}
\DefineBibliographyStrings{french}{candthesis = {thèse de 3\ieme{} cycle}}
\begin{filecontents*}{database.bib}
@thesis{blah,
title = {Blah},
author = {Blah},
type = {bathesis}
}
@thesis{bleh,
title = {Bleh},
author = {Bleh},
type = {mathesis}
}
@thesis{blih,
title = {Blih},
author = {Blih},
type = {phdthesis}
}
@thesis{bloh,
title = {Bloh},
author = {Bloh},
type = {candthesis}
}
\end{filecontents*}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
![alt text][1]
[1]: https://texnique.fr/osqa/upfiles/test_E8XObhw.png