I am trying to adapt keys to my bibliography section, but Latex still generates its own ones.
My main file:
\documentclass[12pt,a4paper, abstract=on, fleqn]{scrreprt}
\usepackage{scrhack}
\usepackage[latin1]{inputenc}
\usepackage{cite}
\bibliographystyle{alpha}
\usepackage[justification=justified,singlelinecheck=false]{caption}
\usepackage[margin=2.5cm]{geometry}
\makeatletter
\begin{document}
This is a quote: 'bla bla!' from \cite{VDI2607}
\bibliography{literature}
\bibliographystyle{plain}
\end{document}
literature.bib:
@Book{VDI2607,
author = {Lamport, Leslie},
title = {\LaTeX: A Document Preparation System},
year = {1994},
isbn = {0-021-52983-1},
publisher = {Addison\,\textendash\,Wesley},
}
I want the link to my source to appear exactly as I defined it in key (VDI2607), but Latex still displays it as [Ing00]
How can I solve this? I want to freely define a key!
