There is a similar question (biblatex-verbose: edition as superscript in front of year) that has already an answer, but the solution doesn't help me. I need a quite strange order in my bibliography:
@Book as: Last Name, First Name (EditionYear): Title. Place: Publisher.
@InBook as: Last Name, First Name (EditionYear): "Title." In: Book, First Name [Editior] Last Name [Editor] (Hrsg.) Place: Publisher, Pages.
I really hope there is a solution to this. If more Information is needed, please feel free to ask!
Edit: my preamble looks like this
\documentclass[a4paper,12pt,numbers=endperiod]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T2A,T1]{fontenc}
\usepackage[russian,ngerman]{babel}
\usepackage{tipa}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{caption}
\usepackage[footskip=1cm]{geometry}
\usepackage[footnote,printonlyused]{acronym}
\usepackage{filecontents}
\usepackage{lipsum}
\usepackage{csquotes}
\usepackage{CJKutf8}
\usepackage[backend=biber,style=authoryear,sorting=nyt]{biblatex}
\addbibresource{graphematik.bib}
\DefineBibliographyStrings{ngerman}{references={Bibliographie}}
\renewbibmacro*{byeditor+others}{%
\ifnameundef{editor}
{}
{\printnames[byeditor]{editor}%
\setunit{\addspace}%
\usebibmacro{byeditor+othersstrg}%
\clearname{editor}%
\newunit}%
\usebibmacro{byeditorx}%
\usebibmacro{bytranslator+others}}
\usepackage{xpatch}
\xpatchbibmacro{byeditor+othersstrg}{\printtext}{\printtext[parens]}{}{}
\renewcommand{\multinamedelim}{/}
\renewcommand{\finalnamedelim}{/}
\setkomafont{disposition}{\mdseries\rmfamily}
\onehalfspacing
\captionsetup[table]{skip=5pt,font=footnotesize}
\deffootnote[1.0em]{1.0em}{1.0em}
{\textsuperscript{\thefootnotemark},\enskip}
\renewcommand{\labelnamepunct}{\addcolon\space}
\renewcommand*{\postnotedelim}{\addcolon\space}
\DeclareFieldFormat{postnote}{#1}
\DeclareFieldFormat{multipostnote}{#1}
\DeclareFieldFormat{edition}{\ifinteger{#1}{\textsuperscript{#1}}{#1\isdot\setunit{\addcomma\space}}}
\renewcommand{\baselinestretch}{1.5}
And all this gives me: (Problems in bf)
@Book: Altmann, Hans/Ute Ziegenhain (2010): Prüfungswissen Phonetik, Phonologie und Graphemik. Arbeitstechniken – Klausurfragen – Lösungen. 3. Göttingen: Vandenhoeck & Ruprecht. --> the 3 should be in front of the 2010 (inside the brackets) (it is already in superscript)
@InBook: Bochmann, Klaus (1989): „Rumänisch: Sprachnormierung und Standardsprache“. In: Lexikon der romanistischen Linguistik. Band III. Die einzelnen romanischen Sprachen und Sprachgebiete von der Renaissance bis zur Gegenwart Rumänisch, Dalmatisch/Istroromanisch, Friaulisch, Ladinisch, Bündnerromanisch. Michael Metzeltin/Günter Holtus/Christian Schmitt (hrsg. von). Tübingen: Niemeyer**,** S. 239–251. --> it should just say (Hrsg.), the last comma should be a colon and the "S." has to go
@Articel: Borgwaldt, Susanne R./Frauke**,** M. Hellwig/Annette**,** M. B. de Groot (2004): „Word-initial entropy in five languages. Letter to sound, and sound to letter“. In: Written Language & Literacy 7**,** S. 165–184. --> like before the last comma has to be a colon and the "S." has to leave. also I've just noticed that the commas between the last name and the first name(s) for all authors apart from the first are missing, which is of course undesired.
I really hope this helps and is not too much of a mess!
authoryearthat we need to take special care of, or can we assume you use standardauthoryear? (If the former is the case, an MWE would be really, really helpful.) – moewe Jul 17 '16 at 12:30\DeclareNameAlias{sortname}{family-given}. – moewe Jul 18 '16 at 11:56\begin{document}...\end{document}and a few example citations as well as the contents ofgraphematik.bib. – moewe Jul 18 '16 at 12:09