ich bin gerade dabei, den numeric-comp style von biblatex nach meinen Bedürfnissen anzupassen. Dies gelingt auch soweit ganz gut. Beim Typ article habe ich mit
\DeclareFieldFormat[article]{pages}{#1}
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\begin{filecontents}{literatur.bib}
@Article{Rudd1968,
author = {Rudd, Dale F.},
journal = {AlChE J.},
title = {The synthesis of system designs: I. Elementary decomposition theory},
year = {1968},
pages = {343-349},
volume = {14},
langid = {english},
}
\end{filecontents}
\documentclass[parskip=half,12pt,listof=totoc]{scrartcl}
\usepackage[left=3cm,right=3cm,top=2.5cm,bottom=2cm]{geometry}
\usepackage[ngerman]{babel}
% === Literaturverzeichnis === %
\usepackage{csquotes}
\usepackage[hyphens]{url}
\usepackage[hidelinks]{hyperref}
\urlstyle{same}
\usepackage[backend=biber, citestyle=numeric-comp, giveninits=true, autolang=other]{biblatex}
\addbibresource{literatur.bib}
% kein "S." bei Verwendung von article
\DeclareFieldFormat[article]{pages}{#1}
% kein "In:" bei Verwendung von article
\renewbibmacro{in:}{%
\ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\begin{document}
Lorem.\cite{Rudd1968}
\printbibliography
\end{document}
\documentclass[parskip=half,12pt,listof=totoc]{scrartcl}
\begin{document}
D. F. Rudd, "The synthesis of system designs: I. Elementary decomposition theory", \textit{AlChE J.} \textbf{1968}, \textit{14}, 343--349.
\end{document}
Gibt es da eine Möglichkeit?
Gruß
ChemSim

