[Tex/LaTex] Get last name first in biblatex using numeric style

biblatex

Below is a short example of my code.

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}

\usepackage[backend=bibtex,
style=numeric,
sorting=nyt,
bibencoding=utf8,
defernumbers=true,
 natbib=true,
 ]{biblatex}

 \DefineBibliographyStrings{danish}{andothers = {et\addabbrvspace al\adddot}}

\addbibresource{Reference}

\begin{document}
This is a reference see \citep{Ovesen2012} and \citep{ctan}
\printbibliography[title={Referencer}]
\end{document}

In the file "Reference" there are the following:

@article{ctan,
author  = "George D. Greenwade",
title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
year    = "1993",
journal = "TUGBoat",
volume  = "14",
number  = "3",
pages   = "342--351",
keywords  = "latex"
}


@Book{Ovesen2012,
author = {Jens Ovesen and Marianen Hall and Ulirik Oven},
title = {An introduktion to latex},
publisher = {Polyteknisk forlag},
year = {2013},
}

I get the result as shown below, but I want the last names first, so it looks like this:

Greenwade, George D. "The Comprehensive Tex Archive Network (CTAN)".
In: TUGBoat 14.3 (1993), pp. 342-351.

Ovesen, Jens; Marianen Hall and Ulirik Oven. An introduktion to latex.
Polyteknisk forlag, 2013.

enter image description here

How can I do this ?

Best Answer

Add \DeclareNameAlias{author}{last-first} to your preamble.