How can I set the language of the bibliography so it's Romanian instead of English? I'm writing in Romanian and I need to set the bibliography language to it too. For now my bibliography is in English (I noticed it as the "and" between multiple authors is being printed as "and" instead of "și". Please help. Thanks in advance!
The bib file:
@book{math,
title = {Matematic\u a},
author = {Gigel, Grasu and Gina, Gega},
year = {2006},
publisher = {Editura 123},
edition = {3}
}
The .tex file
\documentclass[twoside, 10pt]{book}
\usepackage{type1cm}
\usepackage[romanian]{babel}
\usepackage{makeidx} % allows index generation
\usepackage{graphicx} % standard LaTeX graphics tool
% when including figure files
\graphicspath{{Figures/}}
\usepackage{multicol} % used for the two-column index
\usepackage[bottom]{footmisc}% places footnotes at page bottom
\usepackage[backend=biber,style=numeric]{biblatex}
\addbibresource{bibliografie.bib}
\begin{document}
\selectlanguage{english} %I wish for the language to be romanian
\printbibliography
\end{document}
biblatexhas no Romanian localisation yet. See https://tex.stackexchange.com/q/200932/35864. If you want to help contributeromanian.lbx, don't hesitate to drop by https://github.com/plk/biblatex/issues – moewe Apr 25 '20 at 10:29