1

I'm using the natbib package and as a styling I'm using dinat. Which results in this:

enter image description here

However I'd like to have a consistent tab between the [König 2018] and the rest so that it looks like a two column layout. MWE:

\documentclass[12pt]{article}
\usepackage{natbib}
\begin{document}
\cite{SemVer}
\bibliography{literatur}{}
\bibliographystyle{dinat}
\end{document}

literatur.bib:

@misc{SemVer,
    author       = "Preston-Werner",
    year         = "2018",
    note         = "verfügbar unter: https://semver.org/"
}

Desired Ouput

[König 2018]             König, Lily: 2018 - verfügbar unter: 
                         https://semver.org even more text eveb more text
[Preston-Werner 2018]    Preston-Werner: 2018

and so on. Any idea in how to achieve this?

0 Answers0