I am using Beamer to prepare a Turkish presentation. However, I came a cross with the following two problems.
- How can I make this write "Author1, Author2 ve Author3"?
- How can I replace "References" with "Kaynaklar" in the top bar?
Here is my code.
\documentclass[10pt,turkish,notheorems]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[turkish]{babel}
\usepackage[backend=bibtex,firstinits=true]{biblatex}
\usetheme{Warsaw}
\usecolortheme{whale}
\begin{filecontents}{\jobname.bib}
@article {MR1708451,
AUTHOR = {Zhang, B. G. and Tian, C. J. and Wong, P. J. Y.},
TITLE = {Global attractivity of difference equations with variable delay},
JOURNAL = {Dynam. Contin. Discrete Impuls. Systems},
VOLUME = {6},
YEAR = {1999},
NUMBER = {3},
PAGES = {307--317},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\begin{frame}{}
\citeauthor{MR1708451}
\end{frame}
\begin{frame}{}
\printbibliography
\end{frame}
\end{document}
