I have a german article to cite, and in my bib file I typed something like the following
@article{müjaaa2005,
title={aaaa},
author={Müjaaa},
journal={aaaa},
pages={111},
year={2005},
publisher={aaa}
}
however \cite{müjaaa2005} only shows a question mark.
The beginning part of my tex file looks like the following:
\begin{filecontents}{preliminary.sty}
\ProvidesPackage{preliminary}
\DeclareOption{draft}{%
\AtBeginDocument{%
\renewcommand\maketitlehookc{%
\begin{center}(Preliminary and Incomplete)\end{center}}}}
\ProcessOptions
\RequirePackage{titling}
\endinput
\end{filecontents}
\documentclass[12pt]{article}
\usepackage{preliminary}
\usepackage[ngerman]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[round,authoryear]{natbib}
Anyone knows how to fix this problem, and let it show müjaaa(2005) ?
Thanks!
muejaaa2005ormujaaa2005. – moewe Aug 02 '20 at 08:00\usepackage[utf8x]{inputenc}to\usepackage[utf8]{inputenc}) if you usebiblatexwith Biber. – moewe Aug 02 '20 at 08:01