Articletitle bei biblatex-chem ohne Anführungszeichen

Antwort erstellen


Diese Frage dient dazu, das automatisierte Versenden von Formularen durch Spam-Bots zu verhindern.
Smilies
:D :) :( :o :shock: :? 8) :lol: :-x :P :oops: :cry: :evil: :twisted: :roll: :wink: :!: :?: :idea: :arrow: :| :mrgreen:

BBCode ist eingeschaltet
[img] ist eingeschaltet
[flash] ist ausgeschaltet
[url] ist eingeschaltet
Smilies sind eingeschaltet

Die letzten Beiträge des Themas

Ich habe die Datenschutzerklärung gelesen und bin damit einverstanden.

   

Wenn du eine Datei oder mehrere Dateien anhängen möchtest, gib die Details unten ein.

Ansicht erweitern Die letzten Beiträge des Themas: Articletitle bei biblatex-chem ohne Anführungszeichen

von Esteltraut » Di 11. Nov 2014, 15:06

Perfekt, ihr seid einfach die Besten. :)

von Johannes_B » Mo 10. Nov 2014, 18:33

\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}

Articletitle bei biblatex-chem ohne Anführungszeichen

von Esteltraut » Mo 10. Nov 2014, 15:46

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.

Nach oben