Kannst Du etwas spezifischer beschreiben, an welcher Stelle die Bibliografie noch nicht so aussieht wie Du sie haben willst?
Geändert hab ich nur die Einbindung Deiner Bib-Datei über filecontents, backend=biber (statt bibtex8) und dem ersten Eintrag diverse Autoren hinzugefügt, damit das "et al." auch auftaucht. Vermutlich gibts irgendwo noch Punkte, Kommas oder andere Formatierungen die noch geändert werden sollen. (BTW: Wer bitte denkt sich so ein grauenhaftes Format aus?)
**EDIT**: Um die Lösung einfacher zu machen habe ich die hier nicht benötigten Zeilen aus den bib-Einträgen und dem Dokument gelöscht.
Was noch fehlt zu Deinem Bibliografie-Layout:
1. Punkt hinter Journalnummer (volume) weg
2. Reihenfolge der Herausgeber-Angabe von aktuell "Hrsg. von Vorname Nachname" in "Nachname, VornameInitail. (Hrsg.)"
Ab hier können andere sehr viel besser als ich weiterhelfen.
![alt text][1]
\documentclass[12pt]{scrartcl}
\usepackage{geometry}
\geometry{a4paper, top=2.5cm, left=2.5cm, right=2.5cm, bottom=3 cm}
\usepackage[protrusion=true,expansion=true]{microtype}
\usepackage{lmodern}
\usepackage{xcolor}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[german=quotes]{csquotes}
\usepackage[%
style=authoryear-icomp,
pagetracker=true,
maxcitenames=3,
date=year,
origdate=year,
% backend=bibtex8,
backend=biber,
safeinputenc,
url=false,
isbn=false,
hyperref=false,
doi=false,
sorting=nyt
]{biblatex}
%\usepackage{filecontents}
\begin{filecontents}{bib1.bib}
@incollection{Stroud1994,
Author = {Barry Stroud And Liz Miller And Tom Jones And Barry White},
Stroud},
Booktitle = {Understanding Human Knowledge},
Date-Added = {2015-02-09 00:22:42 +0000},
Date-Modified = {2015-02-09 00:23:53 +0000},
Editor = {Ders.:},
Keywords = {Andere},
Origdate = {2000},
{Barry Stroud}, % oder soll hier Ders. stehen?
Pages = {155--76},
Publisher = {Oxford University Press},
Title = {Kantian Argument, Conceptual Capacities, and Invulnerability},
Year = {1994}}
@article{Stroud1968,
Author = {Barry Stroud},
Date-Added = {2015-02-09 00:21:49 +0000},
Date-Modified = {2015-02-09 00:22:38 +0000},
Journal = {The Journal of Philosophy},
Keywords = {Andere},
Number = {9},
Pages = {241--56},
Title = {Transcendental Arguments},
Volume = {65},
Year = {1968}}
@book{Pritchard2012,
Address = {Oxford},
Author = {Duncan Pritchard},
Date-Added = {2015-02-09 00:20:35 +0000},
Date-Modified = {2015-02-09 00:21:19 +0000},
Keywords = {Andere},
Publisher = {Oxford University Press},
Title = {Epistemological Disjunctivism},
Year = {2012}}
@incollection{Pritchard2008,
Address = {Oxford},
Author = {Duncan Pritchard},
Booktitle = {Disjunctivism: Perception, Action, Knowledge},
Date-Added = {2015-02-09 00:19:13 +0000},
Date-Modified = {2015-02-09 00:31:27 +0000},
Editor = {Macpherson, F. \& Haddock, A.},
Keywords = {Andere},
Pages = {283--310},
Publisher = {Oxford University Press},
Title = {McDowellian Neo-Mooreanism},
Year = {2008}}
@incollection{McDowell2008,
Address = {Oxford},
Author = {John McDowell},
Booktitle = {Disjunctivism: Perception, Action, Knowledgey},
Date-Modified = {2015-02-09 00:35:38 +0000},
Editor = {Macpherson, F. \& Haddock, A.},
Keywords = {McDowell},
Pages = {376--89},
Publisher = {Oxford University Press},
Title = {The Disjunctive Conception of Experience as Material for a Transcendental Argument},
Year = {2008}}
@incollection{McDowell1982,
Address = {Cambridge, M. A.},
Author = {John McDowell},
Booktitle = {Meaning, Knowledge, and Reality},
Date-Modified = {2015-02-09 00:17:43 +0000},
Editor = {Ders.:},
Keywords = {McDowell},
Origdate = {1998},
Pages = {369--94},
Publisher = {Harvard University Press},
Title = {Criteria, Defeasibility, and Knowledge},
Year = {1982}}
@book{McDowell1996,
Address = {Harvard},
Author = {John McDowell},
Date-Modified = {2015-02-09 00:34:54 +0000},
Keywords = {McDowell},
Origdate = {1996},
Publisher = {Harvard University Press},
Title = {Mind and World},
Year = {1994}}
\end{filecontents}
\addbibresource{bib1.bib}
\setlength{\bibitemsep}{1.5em}
\setlength{\bibhang}{3.6em}
\renewcommand{\postnotedelim}{\addcolon\addspace}
\renewcommand*\bibnamedash{\rule[0.48ex]{3em}{0.14ex}\space}
\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat[article]{title}{#1\isdot}
\DeclareFieldFormat[inbook]{title}{#1\isdot}
\DeclareFieldFormat[incollection]{title}{#1\isdot}
\renewbibmacro*{date}{%
\iffieldundef{origyear}{%
}{%
\setunit*{\addspace}
\printtext[parens]{\printorigdate}%
}%
}
\DeclareFieldFormat{journaltitle}{#1}
\DeclareFieldFormat{pages}{#1}
\DeclareFieldFormat[inbook,thesis,article,in collection,booklet,conference,in proceedings,proceedings,unpublished]{title}{\mkbibemph{#1}}
\DefineBibliographyStrings{german}{%
andothers = {{et\,al\adddot}},
editor = {(Hrsg.)},
editors = {(Hrsg.)}}
\renewcommand{\labelnamepunct}{\addcolon\addspace}
%
%\bibliography{bib1}
\DeclareFieldFormat{pages}{#1} % S. entfernen vor Seitenzahl
\DeclareFieldFormat*{number}{\printtext[parens]{#1}} % Klammern um Journalnummer
\begin{document}
Lorem ipsum \parencite[xi]{McDowell1996}
\nocite{*}
\printbibliography
\end{document}
![alt text][1]
[1]: http://texwelt.de/wissen/upfiles/Bib1.pnghttp://texwelt.de/wissen/upfiles/Bib2.png