habe eine Frage: in meinem Literaturverzeichnis und in meinem Zitat soll der Autor jeweils in Kapitalchen stehen AUSSER beim Entrytyp "misc".
Wie bekomme ich das hin?
Waere toll, wenn mir jemand helfen koennte

Anbei mein Mini-Bsp.
\begin{filecontents*}{abc.bib} @misc{key1, Author = {{Los Angeles Times}}, Date = {1997-08-12}, Date-Added = {2011-06-06 10:14:20 +0200}, Date-Modified = {2011-06-06 10:16:26 +0200}, Title = {Samsung Plans Pep Rally, Gifts as AST Joins Family}, Url = {http://articles.latimes.com/print/1997/aug/12/business/fi-21592}, Urldate = {2011-06-06}, Bdsk-Url-1 = {http://articles.latimes.com/print/1997/aug/12/business/fi-21592} } @article{key2, Author = {Mahoney, Joseph T.}, Date-Added = {2011-06-05 15:58:19 +0200}, Date-Modified = {2011-06-05 16:02:37 +0200}, Isbn = {1097-0266}, Issue = {8}, Journal = {Strategic Management Journal}, Pages = {559--584}, Publisher = {John Wiley \& Sons, Ltd.}, Subtitle = {Vertical financial ownership versus other methods of vertical integration}, Title = {The choice of organizational form}, Volume = {13}, Year = {1992}, Bdsk-Url-1 = {http://dx.doi.org/10.1002/smj.4250130802}} \end{filecontents*} \documentclass[12pt]{scrbook} \usepackage[latin1]{inputenc} \usepackage[T1]{fontenc} \usepackage[ngerman]{babel} \usepackage{filecontents} \usepackage[style=authoryear,autocite=footnote]{biblatex} \bibliography{abc} %------------------------------Formatierung LitVerz------------------------------% % keine Anfuehrungszeichen, nicht kurisv \DeclareFieldFormat[article,inbook,incollection,inproceedings,patent,thesis,unpublished,webpage]{title}{#1} % Titel nicht kursiv \DeclareFieldFormat{title}{#1\isdot} %Autoren von Buechern, Artikeln usw. sollen in Kapitaelchen \renewcommand*{\mkbibnamelast}{\textsc} \renewcommand*{\mkbibnameprefix}{\textsc} % Autor soll in Zitat und Literaturverzeichnis in italics anstatt Kapitaelchen stehen \DeclareFieldFormat[misc]{citeauthor}{\mkbibemph{#1}} %funktioniert irgendwie nicht?? \DeclareFieldFormat[misc]{author}{\mkbibemph{#1}} \begin{document} Zitat\footcite{key1}\footcite[3]{key2} \printbibliography \end{document}