Articletitle bei biblatex-chem ohne Anführungszeichen

Erstellung eines Literaturverzeichnisses mit BibTeX, Biber, BibLaTeX und Co.


Esteltraut
Forum-Anfänger
Forum-Anfänger
Beiträge: 30
Registriert: Di 11. Mär 2014, 16:30

Articletitle bei biblatex-chem ohne Anführungszeichen

Beitrag von Esteltraut »

Hallo,
Ich verwende mittlerweile biblatex-chem für meine Protokolle weil die Formatierung genau dem entspricht was ich gern möchte. Jedoch möchte mein aktueller Betreuer dass die Artikelnamen in der Bibliographie mit aufgeführt sind. Kein Problem, articletitle=true einfügen und es geht. Allerdings werden die Artikelnamen jetzt in Anführungszeichen angezeigt, was ich gerne abstellen möchte. Jedoch hab ich in den entsprechenden .bbx-Files nichts finden können um das abzustellen. Hier ein Minimalbeispiel.
\documentclass[a4paper,12pt, twoside=true, DIV10]{scrartcl}

\usepackage[style=chem-angew, articletitle=true, firstinits=true,url=false,doi=false,eprint=false,backend=biber]{biblatex}
\addbibresource{Test.bib} 
\let\cite=\supercite

\begin{document}
Test.\cite{Prodan2003}\cite{Aili2010}
\printbibliography
\end{document}
@Article{Aili2010,
  Title                    = {Bioresponsive peptide-inorganic hybrid nanomaterials},
  Author                   = {Aili, Daniel and Stevens, Molly M.},
  Journal                  = {Chem. Soc. Rev.},
  Year                     = {2010},
  Pages                    = {3358-3370},
  Volume                   = {39},

  Abstract                 = {Bioanalytical techniques that enable simple{,} fast and reliable high sensitivity monitoring of biomolecular interactions are of immense importance for diagnostics and drug development. This tutorial review provides an overview of recent progress in the development of peptide-based hybrid nanomaterials that transduce molecular interactions by exploiting the optical and magnetic properties of nanoparticles. Peptides have emerged as an interesting alternative to conventional biomolecular receptors{,} such as antibodies{,} and are facilitating the design of responsive hybrid nanomaterials that are both robust and sensitive for biodiagnostic applications.},
  Doi                      = {10.1039/B919461B},
  Issue                    = {9},
  Owner                    = {gossler},
  Publisher                = {The Royal Society of Chemistry},
  Timestamp                = {2014.10.31},
  Url                      = {http://dx.doi.org/10.1039/B919461B}
}
@Article{Prodan2003,
  Title                    = {A Hybridization Model for the Plasmon Response of Complex Nanostructures},
  Author                   = {Prodan, E. and Radloff, C. and Halas, N. J. and Nordlander, P.},
  Journal                  = {Science},
  Year                     = {2003},
  Number                   = {5644},
  Pages                    = {419-422},
  Volume                   = {302},

  Doi                      = {10.1126/science.1089171},
  Eprint                   = {http://www.sciencemag.org/content/302/5644/419.full.pdf},
  Owner                    = {gossler},
  Timestamp                = {2014.11.05},
  Url                      = {http://www.sciencemag.org/content/302/5644/419.abstract}
}


Wäre super wenn mir jemand helfen könnte.

Benutzeravatar
Johannes_B
Moderator
Moderator
Beiträge: 5079
Registriert: Do 1. Nov 2012, 14:55
Kontaktdaten:

Beitrag von Johannes_B »

\begin{filecontents}{\jobname.bib}
	@Article{Aili2010,
		Title                    = {Bioresponsive peptide-inorganic hybrid nanomaterials},
		Author                   = {Aili, Daniel and Stevens, Molly M.},
		Journal                  = {Chem. Soc. Rev.},
		Year                     = {2010},
		Pages                    = {3358-3370},
		Volume                   = {39},

		Doi                      = {10.1039/B919461B},
		Issue                    = {9},
		Owner                    = {gossler},
		Publisher                = {The Royal Society of Chemistry},
		Timestamp                = {2014.10.31},
		Url                      = {http://dx.doi.org/10.1039/B919461B}
	}
	@Article{Prodan2003,
		Title                    = {A Hybridization Model for the Plasmon Response of Complex Nanostructures},
		Author                   = {Prodan, E. and Radloff, C. and Halas, N. J. and Nordlander, P.},
		Journal                  = {Science},
		Year                     = {2003},
		Number                   = {5644},
		Pages                    = {419-422},
		Volume                   = {302},

		Doi                      = {10.1126/science.1089171},
		Eprint                   = {http://www.sciencemag.org/content/302/5644/419.full.pdf},
		Owner                    = {gossler},
		Timestamp                = {2014.11.05},
		Url                      = {http://www.sciencemag.org/content/302/5644/419.abstract}
	}
\end{filecontents}
\documentclass{scrartcl}

\usepackage[style=chem-angew,articletitle=true,
firstinits=true,url=false,doi=false,eprint=false,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\let\cite=\supercite
\DeclareFieldFormat[article]{title}{{#1}}%<------
\begin{document}
Test.\cite{Prodan2003}\cite{Aili2010}
\printbibliography
\end{document}
TeXwelt - Fragen und Antworten Schaut vorbei und stellt Fragen.
LaTeX-Vorlagen?

Der Weg zum Ziel: Ruhe bewahren und durchatmen, Beiträge und unterstützende Links aufmerksam lesen, Lösungsansätze verstehen und ggf. nachfragen.

Esteltraut
Forum-Anfänger
Forum-Anfänger
Beiträge: 30
Registriert: Di 11. Mär 2014, 16:30

Beitrag von Esteltraut »

Perfekt, ihr seid einfach die Besten. :)

Antworten