also ich habe ein Problem mit dem Versuch, mein Literaturverzeichnis zu sortieren und die Namen der Autoren fett zu machen...
Ich habe mal als Minimalbeispiel folgendes zusammengebaut:
\begin{filecontents*}{\jobname.bib}
@book{Bauernhansl.2014,
author = {Bauernhansl, Thomas; ten Hompel, Michael; Vogel-Heuser, Birgit},
year = {2014},
title = {Industrie 4.0 in Produktion, Automatisierung und Logistik [Elektronische Ressource]: Anwendung · Technologien · Migration herausgegeben von Thomas Bauernhansl, Michael ten Hompel, Birgit Vogel-Heuser},
keywords = {Produktentwicklung Intelligente Fertigung CAD CIL CIM Datensicherung f Aufsatzsammlung f Online-Publikation},
address = {Wiesbaden},
publisher = {{Imprint: Springer Vieweg}},
isbn = {978-3-658-04682-8}
}
@misc{Kagermann.201304,
author = {Kagermann, Henning; Wahlster, Wolfgang; Helbig, Johannes},
date = {2013-04},
title = {Umsetzungsempfehlungen für das Zukunftsprojekt Industrie 4.0 - Abschlussbericht des Arbeitskreises Industrie 4.0},
url = {https://www.bmbf.de/files/Umsetzungsempfehlungen_Industrie4_0.pdf},
urldate = {2016-04-27},
editor = {{Promotorengruppe Kommunikation der Forschungsunion Wirtschaft -- Wissenschaft} and {acatech -- Deutsche Akademie der Technikwissenschaften e.V.}}
}
@misc{OPCFoundation.,
author = {{OPC Foundation}},
title = {OPC Unified Architecture - Wegbereiter der 4. industriellen (R)Evolution},
url = {http://www.opcfoundation-events.com/uploads/media/OPC-UA-Wegbereiter-der-IE40-DE-v2.pdf},
urldate = {2016-04-27},
editor = {{OPC Foundation}}
}
@misc{PlattformIndustrie4.0.2015,
author = {{Plattform Industrie 4.0}},
date = {2015},
title = {Umsetzungsstrategie Industrie 4.0 - Ergebnisbericht der Plattform Industrie 4.0},
url = {https://www.bitkom.org/Publikationen/2015/Leitfaden/Umsetzungsstrategie-Industrie-40/150410-Umsetzungsstrategie-0.pdf},
urldate = {2016-04-25},
editor = {{BITKOM e.V., VDMA e.V. und ZVEI e.V.}},
institution = {{Plattform Industrie 4.0}}
}
}
\end{filecontents*}
\documentclass{article}
\usepackage{biblatex}
\usepackage[utf8]{inputenc}
\addbibresource{\jobname.bib}
% Nach- und Vorname des Autors fett
\AtBeginBibliography{
\let\multinamedelim\bibmultinamedelim
\let\finalnamedelim\bibfinalnamedelim
\renewcommand*{\mkbibnamelast}[1]{\textbf{\namepartfamily}}
\renewcommand*{\mkbibnamefirst}[1]{\textbf{\namepartfamily}}}
% Autoren im Literaturverzeichnis mit Nachname, Vorname
\DeclareNameFormat{sortname}{% Bibliographie
\iffirstinits
{\usebibmacro{name:last-first}{\namepartfamily}{\namepartgiveni}{\namepartprefix}{\namepartsuffix}}
{\usebibmacro{name:last-first}{\namepartfamily}{\namepartgiven}{\namepartprefix}{\namepartsuffix}}%
\usebibmacro{name:andothers}}
\begin{document}
\section{Test}
\cite{Bauernhansl.2014}
\cite{Kagermann.201304}
\cite{OPCFoundation.}
\cite{PlattformIndustrie4.0.2015}
\printbibliography
\end{document}
Viele Grüße und Danke im Voraus!
