I'm trying to generate bibliography using bibtex. My problem is that keyword and is not generated to comma. I also want to put First name after Last name. (I'm using Gummi as LaTeX editor).
Document:
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{polski}
\usepackage[polish]{babel}
\usepackage[T1]{fontenc}
\usepackage{tgtermes}
\usepackage{sectsty}
\usepackage{datetime}
\usepackage[a4paper, left=25mm, right=25mm, top=25mm, bottom=25mm]{geometry}
\usepackage{lipsum}
\selectlanguage{polish}
\title{\textbf{Title}}
\author{Author}
\date{\today}
\begin{document}
\bibliographystyle{plain}
\maketitle
\begin{abstract}
\lipsum[1-3]
\end{abstract}
\tableofcontents
\lipsum
\cite{programowanie}
\bibliography{praca-dyplomowa.bib}
\end{document}
BibTeX:
@Book{programowanie,
author = "Van Roy, P. and Haridi, S.",
title = "Programowanie. Koncepcje, techniki i modele",
publisher = "Wydawnictwo Helion",
year = "2005",
address = "Gliwice"
}

