I very much like the way the citations are done in this answer here Quote environment with reference at the end right Is there any way to get the same effect using csQuotes? Beneath is a somewhat minimal example =)
\begin{filecontents}{biblio.bib}
@book{Feynman,
author = "Richard P. Feynman",
title = "Surely You're Joking, Mr.Feynman!",
publisher = "WW.Norton Company, Inc",
year = "1985"
}
\end{filecontents}
\documentclass[12pt,a4paper]{article}
\usepackage[sort,numbers,square]{natbib}
\usepackage[norsk]{babel}
\usepackage[autostyle]{csquotes}
\usepackage[lipsum]
\begin{document}
\textquote[Feynman \citep[s39-41]{Feynman}]{\lipsum[1]}{}{}
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}
Here is what I get

And here is what I want =)

I did try a few dirty fixes, such as defining new environments and what not. But most likely the people here are far more experienced in using these packages =)
\signedcommand from the linked question fixes this. I would recommend using this instead, (or find your own way to fix the brokenlines) Otherwise a really useful answer, thanks! – N3buchadnezzar Dec 17 '13 at 16:47