I am writing my master-thesis in german and I also use literature which is in greek. Therefore I need to add them to my bibliography. When I add a reference with greek characters, I get the following error messages:
Code: Select all
! Package inputenc Error: Unicode char \u8:Δ not set up for use with LaTeX.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
l.45
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
! Package inputenc Error: Unicode char \u8:ι not set up for use with LaTeX.
See the inputenc package documentation for explanation.
Type H <return> for immediate help.
...
My Main.tex:
Code: Select all
\RequirePackage[ngerman = ngerman-x-latest]{hyphsubst}
% Seitenlayout:
\documentclass{scrbook}
% load packages:
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[babel,german=quotes]{csquotes}
\usepackage[backend=biber, style=authoryear-luh-ipw]{biblatex}
\addbibresource{literature.bib}
\title{test}
\begin{document}
\cite{test1}
\printbibliography
\end{document}
Code: Select all
@online{test1,
title = {{Διακήρυξη του}},
url = {http://www.xy.com},
author = {{franz ferdinand}},
urldate = {2014-08-18},
}

Yours
Jannis