I want to have non-English charachters in bibliography title. So I tried this solution.
\documentclass[11pt,a4paper,oneside]{article}
\usepackage{natbib}
\usepackage[utf8x]{inputenc}
\usepackage{caption}
\begin{document}
\section{Preface}
This isn't supposed to be.\cite{DUMMY:1}
\newpage
\bibliography{biblist.bib}
\bibliographystyle{unsrt}
%\renewcommand{\bibname}{Kaynakça}
\printbibliography[title = {\text{Kaynakça}}]
\end{document}
Both commented \renewcommand{\bibname}{Kaynakça} and \printbibliography[title = {\text{Kaynakça}}] didn't work.
My Biblist.bib file:
@BOOK{DUMMY:1,
title = {{B}ook {T}itle},
publisher = {Publisher},
author = {Smith, J.~M. and Jones, A.~B.},
year = {2012},
edition = {7th},
}
@ARTICLE{DUMMY:2,
author = {Jones, A.~B. and Smith, J.~M.},
title = {{A}rticle {T}itle},
journal = {{J}ournal {T}itle},
year = {2013},
volume = {13},
pages = {123-456},
number = {52},
month = {March},
publisher = {Publisher}
}
