I am writing my master thesis and it´s my first time I am using latex. I have some problems changing the citation styles. Have a look at this citation:
and here is the part from my bib file:
@misc{JayAlammar.2018,
author = {{Jay Alammar}},
year = {2018},
title = {The Illustrated Transformer},
url = {http://jalammar.github.io/illustrated-transformer/},
urldate = {07.05.2020}
}
As you can see the citation takes the first three characters from the authors first name and the year. But what I want is something like this [JA18], so the citation is first letter from firstname, first letter from lastname and the year.
The same problem I have with more then one author:
@misc{JeffreyPenningtonRichardSocherChrstiopherD.Manning.2014,
author = {{Jeffrey Pennington, Richard Socher, Chrstiopher D. Manning}},
date = {2014},
title = {GloVe: Global Vectors for Word Representation},
url = {https://nlp.stanford.edu/pubs/glove.pdf},
urldate = {23.05.2020}
}
According to this on Overleaf the citation should be [PSM14]. The first lastname character from all authors and the year.
Btw, I also don´t know why I do not get the year in the citation. In Citavi I picked for the first citation internetdocument and for the second citation report. In both citations I added the year.
And here my thesis_main:
\documentclass[a4paper]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage[ngerman]{babel}
\usepackage{url}
\usepackage{relsize}
\usepackage{hyperref}
\usepackage{libertine}
here some other stuff for listings...
\begin{document}
here some other latex files with thesis chapters
\end{document}
\bibliographystyle{alphaurl}
\bibliography{thesis_references}
Here is an image how I define my citations in Citavi.

Please expain me how to change the citation style to my desires. Thank you!




author = {Jay Alammar},andauthor = {Jeffrey Pennington and Richard Socher and Chrstiopher D. Manning},(all names separated withandregardless of the desired output). – moewe Jun 28 '20 at 11:41yearfield (i.e.year = {2014},instead ofdate = {2014},).dateis only recognised bybiblatexstyles. – moewe Jun 28 '20 at 11:42