14.03.2013 Aufrufe

Bibliographien mit LaTeX - Matthias Pospiech

Bibliographien mit LaTeX - Matthias Pospiech

Bibliographien mit LaTeX - Matthias Pospiech

MEHR ANZEIGEN
WENIGER ANZEIGEN

Erfolgreiche ePaper selbst erstellen

Machen Sie aus Ihren PDF Publikationen ein blätterbares Flipbook mit unserer einzigartigen Google optimierten e-Paper Software.

<strong>Bibliographien</strong> <strong>mit</strong> <strong>LaTeX</strong><br />

<strong>mit</strong> Zitaten im Nummern-Stil<br />

<strong>Matthias</strong> <strong>Pospiech</strong><br />

pospiech@iqo.uni-hannover.de<br />

Institut für Quantenoptik<br />

Leibniz Universität Hannover<br />

September 2011


Inhalt<br />

1 <strong>LaTeX</strong> und BibTeX<br />

2 biblatex und biber<br />

3 Literatur erstellen und verwalten (JabRef)<br />

4 Literaturverwaltung in Word<br />

5 Anhang


Inhalt<br />

1 <strong>LaTeX</strong> und BibTeX<br />

2 biblatex und biber<br />

<strong>LaTeX</strong> und BibTeX<br />

3 Literatur erstellen und verwalten (JabRef)<br />

4 Literaturverwaltung in Word<br />

5 Anhang


<strong>LaTeX</strong> und BibTeX Vorteile<br />

Zitate und <strong>Bibliographien</strong> in <strong>LaTeX</strong> <strong>mit</strong> BibTeX<br />

Vorteile von BibTeX:<br />

Trennung von<br />

◮ Literatur (.bib)<br />

BibTeX-Dokument (Autor, Titel, Verlag, . . . )<br />

◮ Inhalt (.tex)<br />

<strong>LaTeX</strong>-Dokument (was wird zitiert)<br />

◮ Layout (.bst)<br />

der Zitate und des Literaturverzeichnisses


<strong>LaTeX</strong> und BibTeX Vorteile<br />

Zitate und <strong>Bibliographien</strong> in <strong>LaTeX</strong> <strong>mit</strong> BibTeX<br />

Vorteile von BibTeX:<br />

Trennung von<br />

◮ Literatur (.bib)<br />

BibTeX-Dokument (Autor, Titel, Verlag, . . . )<br />

◮ Inhalt (.tex)<br />

<strong>LaTeX</strong>-Dokument (was wird zitiert)<br />

◮ Layout (.bst)<br />

der Zitate und des Literaturverzeichnisses<br />

Aufgaben von BibTeX:<br />

◮ Sortierung der Zitate<br />

◮ Formatierung der Bibliographie (.bbl)


<strong>LaTeX</strong>-Dokument<br />

<strong>LaTeX</strong> und BibTeX Dokumente<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

% Naturwissenschaftliche <strong>Bibliographien</strong><br />

\usepackage[square, comma, numbers, sort&compress]{natbib}<br />

% Stil der Zitate und der Bibliographie<br />

\bibliographystyle{unsrt}<br />

\begin{document}<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln<br />

\cite{Zipfel2003, <strong>Pospiech</strong>2011, Hell1994}, einer Dissertation<br />

\cite{Schaffer2001a} und einem Buch \cite{BornWolf1999}.<br />

\bibliography{Literatur} % Endung .bib<br />

\bibliography{WeitereLiteratur}<br />

\end{document}


<strong>LaTeX</strong> und BibTeX Dokumente<br />

resultierendes PDF-Dokument<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [1–3], einer Dissertation [4] und einem Buch [5].<br />

Literatur<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Kai Kuetemeyer, Alexander Heisterkamp, and Uwe Morgner.<br />

Superresolved femtosecond laser nanosurgery of cells. Biomed. Opt. Express, 2(2):264–<br />

271, 2011.<br />

[3] Stefan W. Hell and Jan Wichmann. Breaking the diffraction resolution li<strong>mit</strong> by stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy. Opt. Lett., 19(11):780–<br />

782, Jun 1994.<br />

[4] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[5] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.


Programmaufrufe<br />

1. pdflatex example.tex<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [? ? ? ], einer Dissertation [? ] und einem Buch [? ].<br />

<strong>LaTeX</strong> erstellt Liste der Zitate: example.aux<br />

...<br />

\bibstyle{unsrt}<br />

\citation{Zipfel2003,<strong>Pospiech</strong>2011,Hell1994}<br />

\citation{Schaffer2001a}<br />

\citation{BornWolf1999}<br />

\bibdata{Literatur}<br />

...


Programmaufrufe<br />

2. bibtex example<br />

\begin{thebibliography}{1}<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

\bibitem{Zipfel2003}<br />

Warren~R. Zipfel, Rebecca~M. Williams, and Watt~W. Webb.<br />

\newblock Nonlinear magic: multiphoton microscopy in the biosciences.<br />

\newblock {\em Nature Biotechnology}, 21(11):1369--1377, 2003.<br />

\bibitem{<strong>Pospiech</strong>2011}<br />

<strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Kai Kuetemeyer, Alexander Heisterkamp,<br />

and Uwe Morgner.<br />

\newblock Superresolved femtosecond laser nanosurgery of cells.<br />

\newblock {\em Biomed. Opt. Express}, 2(2):264--271, 2011.<br />

...<br />

von BibTeX erstelltes Literaturverzeichnis: example.bbl


Programmaufrufe<br />

3. pdflatex example.tex<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [? ? ? ], einer Dissertation [? ] und einem Buch [? ].<br />

Literatur<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Kai Kuetemeyer, Alexander Heisterkamp, and Uwe Morgner.<br />

Superresolved femtosecond laser nanosurgery of cells. Biomed. Opt. Express, 2(2):264–<br />

271, 2011.<br />

[3] Stefan W. Hell and Jan Wichmann. Breaking the diffraction resolution li<strong>mit</strong> by stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy. Opt. Lett., 19(11):780–<br />

782, Jun 1994.<br />

[4] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[5] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.<br />

<strong>LaTeX</strong> lädt Literaturverzeichnis und speichert Verweise.


Programmaufrufe<br />

4. pdflatex example.tex<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [1–3], einer Dissertation [4] und einem Buch [5].<br />

Literatur<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Kai Kuetemeyer, Alexander Heisterkamp, and Uwe Morgner.<br />

Superresolved femtosecond laser nanosurgery of cells. Biomed. Opt. Express, 2(2):264–<br />

271, 2011.<br />

[3] Stefan W. Hell and Jan Wichmann. Breaking the diffraction resolution li<strong>mit</strong> by stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy. Opt. Lett., 19(11):780–<br />

782, Jun 1994.<br />

[4] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[5] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.<br />

<strong>LaTeX</strong> lädt Literaturverzeichnis und Verweise.


Programmaufrufe – Skizze<br />

tex <strong>LaTeX</strong> (1)<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe


Programmaufrufe – Skizze<br />

tex <strong>LaTeX</strong> (1)<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

.aux<br />

.bib<br />

BibTeX<br />

.bst


Programmaufrufe – Skizze<br />

tex <strong>LaTeX</strong> (1)<br />

<strong>LaTeX</strong> (2)<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

.aux<br />

.bbl<br />

.bib<br />

BibTeX<br />

.bst


Programmaufrufe – Skizze<br />

tex <strong>LaTeX</strong> (1)<br />

<strong>LaTeX</strong> (2)<br />

.aux<br />

<strong>LaTeX</strong> und BibTeX Programmaufrufe<br />

.aux<br />

.bbl<br />

.bib<br />

BibTeX<br />

<strong>LaTeX</strong> (3) .pdf<br />

.bst


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

% Stil der Zitate und der Bibliographie<br />

\bibliographystyle{unsrt}<br />

\begin{document}<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln<br />

\cite{Zipfel2003, <strong>Pospiech</strong>2011, Hell1994}, einer Dissertation<br />

\cite{Schaffer2001a} und einem Buch \cite{BornWolf1999}.<br />

\bibliography{Literatur}<br />

\end{document}


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

unsrt – nummeriert nach Zitatreihenfolge (nicht sortiert)<br />

Artikel [1, 2], Dissertation [3], Buch [4]<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer, and Uwe Morgner.<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Express, 18(7):6994–7001, 2010.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

plain - Nummeriert, sortiert (Autor, Jahr)<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer, and Uwe Morgner.<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Express, 18(7):6994–7001, 2010.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

alpha - Kürzel, sortiert (Autor, Jahr)<br />

Artikel [ZWW03, PEV + 10], Dissertation [Sch01], Buch [BW99]<br />

[BW99] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). Cambridge University Press, 7th<br />

edition, October 1999.<br />

[PEV + 10] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer, and Uwe<br />

Morgner. Single-sweep laser writing of 3d-waveguide devices. Opt. Express,<br />

18(7):6994–7001, 2010.<br />

[Sch01] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials.<br />

PhD thesis, Harvard University, 2001.<br />

[ZWW03] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377,<br />

2003.


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

alphadin - Kürzel, sortiert (Autor, Jahr), deutsch<br />

Artikel [ZWW03, PEV + 10], Dissertation [Sch01], Buch [BW99]<br />

[BW99] Born, Max ; Wolf, Emil: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press<br />

http://www.worldcat.org/isbn/0521642221. – ISBN 0521642221<br />

[PEV + 10] <strong>Pospiech</strong>, <strong>Matthias</strong> ; Emons, Moritz ; Väckenstedt, Benjamin ; Palmer, Guido ;<br />

Morgner, Uwe: Single-sweep laser writing of 3D-waveguide devices. In: Opt. Express<br />

18 (2010), Nr. 7, 6994–7001. http://dx.doi.org/10.1364/OE.18.006994.<br />

– DOI 10.1364/OE.18.006994<br />

[Sch01] Schaffer, C. B.: Interaction of Femtosecond Laser Pulses with Transparent Materials,<br />

Harvard University, Diss., 2001<br />

[ZWW03] Zipfel, Warren R. ; Williams, Rebecca M. ; Webb, Watt W.: Nonlinear magic: multiphoton<br />

microscopy in the biosciences. In: Nature Biotechnology 21 (2003), Nr. 11,<br />

1369–1377. http://dx.doi.org/10.1038/nbt899. – DOI 10.1038/nbt899<br />

Ebenfalls: plaindin, abbrvdin, unsrtdin.


Zitatstile<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

AlphaDIN<strong>Pospiech</strong> 1 - Kürzel, sortiert (Autor, Jahr), deutsch<br />

Artikel [Zip03, Pos10], Dissertation [Sch01], Buch [Bor99]<br />

[Bor99] Born, Max und Wolf, Emil: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition), Cambridge University Press, 7th Aufl.<br />

(1999)<br />

[Pos10] <strong>Pospiech</strong>, <strong>Matthias</strong>; Emons, Moritz; Väckenstedt, Benjamin; Palmer, Guido und<br />

Morgner, Uwe: Single-sweep laser writing of 3D-waveguide devices. Opt. Express<br />

(2010), Bd. 18(7): S. 6994–7001<br />

[Sch01] Schaffer, C. B.: Interaction of Femtosecond Laser Pulses with Transparent Materials,<br />

Dissertation, Harvard University (2001)<br />

[Zip03] Zipfel, Warren R.; Williams, Rebecca M. und Webb, Watt W.: Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology (2003), Bd. 21(11): S.<br />

1369–1377<br />

1 erstellt <strong>mit</strong> custom-bib


<strong>LaTeX</strong> und BibTeX Zitatstile<br />

Nummerierung/Sortierung der Zitate<br />

Nummeriert: [1], [2], [3]<br />

◮ Autor alphabetisch: plain, plainnat, plaindin, abbrv, . . .<br />

◮ Zitatreihenfolge: unsrt, unsrtnat, unsrtdin<br />

Kürzel: [And92], [KKH11], [LDW+08]<br />

◮ Autor alphabetisch: alpha, alphadin<br />

◮ Autor alphabetisch, angepasst: alphadinpospiech (<strong>mit</strong> custom-bib)<br />

Autor-Jahr: Eugene Hecht (2001)<br />

◮ in der Physik eher unüblicher Stil.


Zitatstile modifizieren<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

Quellcodeausschnitt aus plaindin.bst:<br />

FUNCTION {format.names}<br />

{ ’s :=<br />

"" ’u :=<br />

#1 ’nameptr :=<br />

s num.names$ ’numnames :=<br />

numnames ’namesleft :=<br />

{ namesleft #0 > }<br />

{<br />

s nameptr "{ll}" format.name$ ’t :=<br />

t capitalize ’t :=<br />

s nameptr "{, ff}{ vv}" format.name$ ’u :=<br />

u text.length$ ’lang :=<br />

#1 ’zahl :=<br />

"" ’v :=<br />

{ zahl lang < }<br />

{ u zahl #1 substring$ "~" =<br />

{ v "" =<br />

{ u #1 zahl #1 - substring$ ’v := }<br />

’skip$<br />

if$<br />

v u zahl #2 substring$ * "." * ’v := }<br />

’skip$<br />

if$<br />

zahl #1 + ’zahl := }<br />

...<br />

}


<strong>LaTeX</strong> und BibTeX Zitatstile<br />

Zitatstile modifizieren: custom-bib<br />

Skript zur automatischen Generierung von angepassten bst-Dateien:<br />

C:\Users\<strong>Matthias</strong>>latex makebst<br />

This is pdfTeX, Version 3.1415926-2.3-1.40.12 (Web2C 2011)<br />

restricted \write18 enabled.<br />

entering extended mode<br />

(c:/texlive/2011/texmf-dist/tex/latex/custom-bib/makebst.tex<br />

...<br />

.<br />

***********************************<br />

* This is Make Bibliography Style *<br />

***********************************<br />

It makes up a docstrip batch job to produce<br />

a customized .bst file for running with bibtex<br />

Do you want a description of the usage? (NO)<br />

\yn=y<br />

Enter the name of the MASTER file (default=merlin.mbs)<br />

\mfile=<br />

Name of the final OUTPUT .bst file? (default extension=bst)<br />

\ofile=test


Probleme von BibTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Zitat und Bibliographiestile schlecht anpassbar


Probleme von BibTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Zitat und Bibliographiestile schlecht anpassbar<br />

◮ keine Unterstützung von Unicode, d.h. Einträge werden falsch<br />

sortiert.<br />

falsch (bibtex)<br />

Literatur<br />

[Goe] Goethe. Titel.<br />

[Gol] Goldmann. Titel.<br />

[Gö] Göbel. Titel.


Probleme von BibTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Zitat und Bibliographiestile schlecht anpassbar<br />

◮ keine Unterstützung von Unicode, d.h. Einträge werden falsch<br />

sortiert.<br />

falsch (bibtex)<br />

Literatur<br />

[Goe] Goethe. Titel.<br />

[Gol] Goldmann. Titel.<br />

[Gö] Göbel. Titel.<br />

richtig (biber/biblatex)<br />

Literatur<br />

[Göb] Göbel. Titel.<br />

[Goe] Goethe. Titel.<br />

[Gol] Goldmann. Titel.


Probleme von BibTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Zitat und Bibliographiestile schlecht anpassbar<br />

◮ keine Unterstützung von Unicode, d.h. Einträge werden falsch<br />

sortiert.<br />

◮ Encoding von bib-Datei muss <strong>mit</strong> <strong>LaTeX</strong> Datei übereinstimmen<br />

◮ Umlaute als TeX-Code (unabhängig vom encoding)<br />

◮ Encoding: latin1 (ISO 8859-1/CP1252)


Probleme von BibTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Zitat und Bibliographiestile schlecht anpassbar<br />

◮ keine Unterstützung von Unicode, d.h. Einträge werden falsch<br />

sortiert.<br />

◮ Encoding von bib-Datei muss <strong>mit</strong> <strong>LaTeX</strong> Datei übereinstimmen<br />

◮ Umlaute als TeX-Code (unabhängig vom encoding)<br />

◮ Encoding: latin1 (ISO 8859-1/CP1252)<br />

◮ Speicher li<strong>mit</strong>iert (stürzt bei zu vielen Einträgen ab)<br />

◮ 20 Jahre alt und wird nicht weiterentwickelt


Umlaute in .bib-Dateien<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

Umlaute und Sonderzeichen in TeX-Code (unabhängig vom encoding)<br />

Code Zeichen<br />

{\"o} ö<br />

{\’o} ó<br />

{\‘o} ò<br />

{\~o} õ<br />

{\^o} ô<br />

\ss ß<br />

\textmu µ


st-Dateien Installieren<br />

MikTeX<br />

<strong>LaTeX</strong> und BibTeX Zitatstile<br />

◮ Anlegen von C:\localtexmf\bibtex\bst\<br />

◮ Kopieren von datei.bst in dieses Verzeichnis.<br />

◮ Hinzufügen des localtexmf-Verzeichnisses in<br />

Start/Miktex/Settings ➞ Roots➞ Add<br />

◮ Aktualisieren der Dateidatenbank<br />

Start/Miktex/Settings ➞ General➞ Refresh FNDB<br />

TeX Live<br />

◮ Anlegen von C:\texlive\texmf-local\bibtex\bst\<br />

◮ Kopieren von datei.bst in dieses Verzeichnis.<br />

◮ Start/TeX Live 2011/TeX Live Commandline: Befehl „texhash“<br />

eingeben


Inhalt<br />

1 <strong>LaTeX</strong> und BibTeX<br />

2 biblatex und biber<br />

biblatex und biber<br />

3 Literatur erstellen und verwalten (JabRef)<br />

4 Literaturverwaltung in Word<br />

5 Anhang


iblatex<br />

biblatex und biber biblatex<br />

◮ Makropaket 2 zum Erstellen von Literaturverzeichnissen<br />

◮ Vollständiger Ersatz der Literaturverwaltung von <strong>LaTeX</strong>.<br />

Ersetzt die Pakete: babelbib, backref, bibtopic, bibunits, chapterbib,<br />

cite, citeref, inlinebib, jurabib, mcite, mciteplus, multibib, natbib,<br />

splitbib, . . .<br />

2 Handbuch: biblatex.pdf


iblatex<br />

biblatex und biber biblatex<br />

◮ Makropaket 2 zum Erstellen von Literaturverzeichnissen<br />

◮ Vollständiger Ersatz der Literaturverwaltung von <strong>LaTeX</strong>.<br />

◮ Stile werden in <strong>LaTeX</strong> festgelegt (statt bst-Dateien)<br />

2 Handbuch: biblatex.pdf


iblatex<br />

biblatex und biber biblatex<br />

◮ Makropaket 2 zum Erstellen von Literaturverzeichnissen<br />

◮ Vollständiger Ersatz der Literaturverwaltung von <strong>LaTeX</strong>.<br />

◮ Stile werden in <strong>LaTeX</strong> festgelegt (statt bst-Dateien)<br />

◮ unterstützt unterteilte <strong>Bibliographien</strong>, mehrere <strong>Bibliographien</strong> und<br />

Rückverweise.<br />

2 Handbuch: biblatex.pdf


iblatex<br />

biblatex und biber biblatex<br />

◮ Makropaket 2 zum Erstellen von Literaturverzeichnissen<br />

◮ Vollständiger Ersatz der Literaturverwaltung von <strong>LaTeX</strong>.<br />

◮ Stile werden in <strong>LaTeX</strong> festgelegt (statt bst-Dateien)<br />

◮ unterstützt unterteilte <strong>Bibliographien</strong>, mehrere <strong>Bibliographien</strong> und<br />

Rückverweise.<br />

◮ Nutzt bibtex nur zum Sortieren<br />

◮ Unterstützt biber (bibtex Nachfolger)<br />

2 Handbuch: biblatex.pdf


iblatex<br />

biblatex und biber biblatex<br />

◮ Makropaket 2 zum Erstellen von Literaturverzeichnissen<br />

◮ Vollständiger Ersatz der Literaturverwaltung von <strong>LaTeX</strong>.<br />

◮ Stile werden in <strong>LaTeX</strong> festgelegt (statt bst-Dateien)<br />

◮ unterstützt unterteilte <strong>Bibliographien</strong>, mehrere <strong>Bibliographien</strong> und<br />

Rückverweise.<br />

◮ Nutzt bibtex nur zum Sortieren<br />

◮ Unterstützt biber (bibtex Nachfolger)<br />

Sollte verwendet werden <strong>mit</strong> den Paketen<br />

babel Unterstützung von Sprachen<br />

csquotes Einstellung der Anführungszeichen<br />

bei Zitaten („x“, »x«, “x”)<br />

2 Handbuch: biblatex.pdf


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}<br />

% Stil der Zitate und der Bibliographie<br />

\bibliographystyle{unsrt}


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}<br />

% Stil der Zitate und der Bibliographie<br />

\usepackage[style=numeric-comp]{biblatex}


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}<br />

% Stil der Zitate und der Bibliographie<br />

\usepackage[style=numeric-comp]{biblatex}<br />

\begin{document}<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln<br />

\cite{Zipfel2003, <strong>Pospiech</strong>2011, Hell1994}, einer Dissertation<br />

\cite{Schaffer2001a} und einem Buch \cite{BornWolf1999}.<br />

\end{document}


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}<br />

% Stil der Zitate und der Bibliographie<br />

\usepackage[style=numeric-comp]{biblatex}<br />

\begin{document}<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln<br />

\cite{Zipfel2003, <strong>Pospiech</strong>2011, Hell1994}, einer Dissertation<br />

\cite{Schaffer2001a} und einem Buch \cite{BornWolf1999}.<br />

\bibliography{Literatur}<br />

\end{document}


<strong>LaTeX</strong>-Dokument<br />

biblatex und biber biblatex<br />

\documentclass[paper=a4,fontsize=11pt]{scrartcl}<br />

% Pakete laden ...<br />

\usepackage[ngerman]{babel}<br />

\usepackage[babel, german=quotes]{csquotes}<br />

% Stil der Zitate und der Bibliographie<br />

\usepackage[style=numeric-comp]{biblatex}<br />

% Bibliographie laden<br />

\addbibresource{Literatur.bib} %


iblatex und biber biblatex<br />

resultierendes PDF-Dokument<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [2, 3, 5], einer Dissertation [4] und einem Buch [1].<br />

Literatur<br />

[1] Max Born und Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). 7th. Cambridge University Press, 1999. isbn:<br />

0521642221. url: http://www.worldcat.org/isbn/0521642221.<br />

[2] Stefan W. Hell und Jan Wichmann. „Breaking the diffraction resolution li<strong>mit</strong> by stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy“. In: Opt. Lett. 19.11<br />

(1994), S. 780–782. doi: 10.1364/OL.19.000780. url: http://ol.osa.org/abstrac<br />

t.cfm?URI=ol-19-11-780.<br />

[3] <strong>Matthias</strong> <strong>Pospiech</strong> u. a. „Superresolved femtosecond laser nanosurgery of cells“. In: Biomed.<br />

Opt. Express 2.2 (2011), S. 264–271. doi: 10.1364/BOE.2.000264. url: http://www.o<br />

pticsinfobase.org/boe/abstract.cfm?URI=boe-2-2-264.<br />

[4] C. B. Schaffer. „Interaction of Femtosecond Laser Pulses with Transparent Materials“. Diss.<br />

Harvard University, 2001.<br />

[5] Warren R. Zipfel, Rebecca M. Williams und Watt W. Webb. „Nonlinear magic: multiphoton<br />

microscopy in the biosciences“. In: Nature Biotechnology 21.11 (2003), S. 1369–1377. doi:<br />

10.1038/nbt899. url: http://dx.doi.org/10.1038/nbt899.


Anpassen des Stils<br />

biblatex und biber Zitatstile<br />

Sortieren: alphabetisch nach Name, Titel und Jahr<br />

\ExecuteBibliographyOptions{sorting=nty} % Standard<br />

Nicht Sortieren<br />

\ExecuteBibliographyOptions{sorting=none}<br />

Links ausschalten<br />

\ExecuteBibliographyOptions{%<br />

}%<br />

isbn=false, url=false, doi=false, eprint=false,%<br />

Vornamen als Initialen<br />

\ExecuteBibliographyOptions{%<br />

}%<br />

firstinits=true,


Zitatstil: nummeriert<br />

biblatex und biber Zitatstile<br />

Option: style=numeric-comp – nicht-sortiert, ohne URL, <strong>mit</strong> Initialen<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [1–3], einer Dissertation [4] und einem Buch [5].<br />

Literatur<br />

[1] W. R. Zipfel, R. M. Williams und W. W. Webb. „Nonlinear magic: multiphoton microscopy<br />

in the biosciences“. In: Nature Biotechnology 21.11 (2003), S. 1369–1377.<br />

[2] M. <strong>Pospiech</strong> u. a. „Superresolved femtosecond laser nanosurgery of cells“. In: Biomed. Opt.<br />

Express 2.2 (2011), S. 264–271.<br />

[3] S. W. Hell und J. Wichmann. „Breaking the diffraction resolution li<strong>mit</strong> by stimulated emission:<br />

stimulated-emission-depletion fluorescence microscopy“. In: Opt. Lett. 19.11 (1994),<br />

S. 780–782.<br />

[4] C. B. Schaffer. „Interaction of Femtosecond Laser Pulses with Transparent Materials“. Diss.<br />

Harvard University, 2001.<br />

[5] M. Born und E. Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). 7th. Cambridge University Press, 1999.


iblatex und biber Zitatstile<br />

Zitatstil: alphabetisch <strong>mit</strong> Kürzeln<br />

Option: style=alphabetic<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [ZWW03; Pos+11; HW94], einer Dissertation [Sch01]<br />

und einem Buch [BW99].<br />

Literatur<br />

[BW99] M. Born und E. Wolf. Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press,<br />

1999.<br />

[HW94] S. W. Hell und J. Wichmann. „Breaking the diffraction resolution li<strong>mit</strong> by stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy“. In: Opt.<br />

Lett. 19.11 (1994), S. 780–782.<br />

[Pos+11] M. <strong>Pospiech</strong> u. a. „Superresolved femtosecond laser nanosurgery of cells“. In: Biomed.<br />

Opt. Express 2.2 (2011), S. 264–271.<br />

[Sch01] C. B. Schaffer. „Interaction of Femtosecond Laser Pulses with Transparent Materials“.<br />

Diss. Harvard University, 2001.<br />

[ZWW03] W. R. Zipfel, R. M. Williams und W. W. Webb. „Nonlinear magic: multiphoton microscopy<br />

in the biosciences“. In: Nature Biotechnology 21.11 (2003), S. 1369–1377.


iblatex und biber Zitatstile<br />

Anpassen des Stils alphabetic<br />

\ExecuteBibliographyOptions{%<br />

maxbibnames=99, % Alle Autoren (kein et al.)<br />

maxcitenames=1, % Kürzel nur aus 1. Autor<br />

backref=true, % Rückverweise auf Zitatseiten<br />

}%<br />

\renewcommand*{\labelalphaothers}{} % alpha label ohne +<br />

% Ändere "In: " zu ""<br />

\renewcommand*{\intitlepunct}{}<br />

\DefineBibliographyStrings{german}{in={}}<br />

% Ändere Darstellung von ’volume’ und ’number’ zu ’Bd. 33(14): ’<br />

\renewbibmacro*{volume+number+eid}{%<br />

\setunit{\addcomma\space}\bibstring{volume}<br />

\setunit{\addspace}\printfield{volume}%<br />

\iffieldundef{number}{}{%<br />

\printtext[parens]{\printfield{number}}}%<br />

\setunit{\addcomma\space}\printfield{eid}}<br />

...


iblatex und biber Zitatstile<br />

Viele Zitate in einem Satz <strong>mit</strong> Artikeln [ZWW03; Pos+11; HW94], einer Dissertation [Sch01]<br />

und einem Buch [BW99].<br />

Zitatstil: alphabetisch <strong>mit</strong> Kürzeln (angepasst)<br />

Option: Literatur style=alphabetic (oben: standard, unten: angepasst)<br />

[BW99] M. Born und E. Wolf. Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press,<br />

1999.<br />

[HW94] S. W. Hell und J. Wichmann. „Breaking the diffraction resolution li<strong>mit</strong> by stimu-<br />

Viele Zitate inlated einem emission: Satz <strong>mit</strong> stimulated-emission-depletion Artikeln [Zip03; Pos11; Hel94], fluorescence einer Dissertation microscopy“. [Sch01] In: und Opt.<br />

einem Buch [Bor99]. Lett. 19.11 (1994), S. 780–782.<br />

[Pos+11] M. <strong>Pospiech</strong> u. a. „Superresolved femtosecond laser nanosurgery of cells“. In: Bio-<br />

Literatur med. Opt. Express 2.2 (2011), S. 264–271.<br />

[Bor99]<br />

[Sch01]<br />

M.<br />

C.<br />

Born<br />

B. Schaffer.<br />

und E.<br />

„Interaction<br />

Wolf: Principles<br />

of Femtosecond<br />

of Optics: Electromagnetic<br />

Laser Pulses with<br />

Theory<br />

Transparent<br />

of Propagation,<br />

Materi-<br />

Interference<br />

als“. Diss.<br />

and<br />

Harvard<br />

Diffraction<br />

University,<br />

of Light<br />

2001.<br />

(7th Edition). 7th. Cambridge University Press,<br />

[ZWW03] 1999 W. (siehe R. Zipfel, S. 1). R. M. Williams und W. W. Webb. „Nonlinear magic: multiphoton mi-<br />

[Hel94] S. W.<br />

croscopy<br />

Hell und<br />

in the<br />

J. Wichmann:<br />

biosciences“.<br />

„Breaking<br />

In: Nature<br />

the<br />

Biotechnology<br />

diffraction resolution<br />

21.11 (2003),<br />

li<strong>mit</strong><br />

S.<br />

by<br />

1369–1377.<br />

stimulated<br />

emission: stimulated-emission-depletion fluorescence microscopy“. Opt. Lett. (1994),<br />

Bd. 19(11): S. 780–782 (siehe S. 1).<br />

[Pos11] M. <strong>Pospiech</strong>, M. Emons, K. Kuetemeyer, A. Heisterkamp und U. Morgner: „Superresolved<br />

femtosecond laser nanosurgery of cells“. Biomed. Opt. Express (2011), Bd.<br />

2(2): S. 264–271 (siehe S. 1).<br />

[Sch01] C. B. Schaffer: „Interaction of Femtosecond Laser Pulses with Transparent Materi-


iblatex und biber biber<br />

biber: A backend bibliography processor for biblatex<br />

◮ bibtex Ersatz speziell für biblatex<br />

◮ Eigenschaften (siehe biber.pdf, Abschnitt 1.4)<br />

◮ löst alle bibtex-Probleme<br />

◮ unterstützt Unicode (sortiert richtig)<br />

◮ keine Li<strong>mit</strong>ationen bzgl. der Anzahl der Referenzen<br />

◮ unterstützt in Zukunft weitere Datenformate außer .bib<br />

◮ aktuelle Version von biber: 0.9.5


iblatex und biber biber<br />

biber: A backend bibliography processor for biblatex<br />

Verwendung<br />

\ExecuteBibliographyOptions{%<br />

}%<br />

backend=biber, % (bibtex, biber)<br />

bibencoding=utf8, % wenn .bib in utf8, sonst ascii<br />

Änderung des Programms im Editor (TexStudio 2.2)


iblatex und biber biber<br />

biber: Ein Bibliographie-Verarbeitungsprogramm für<br />

biblatex<br />

Verwendung<br />

\ExecuteBibliographyOptions{%<br />

}%<br />

backend=biber, % (bibtex, biber)<br />

bibencoding=utf8, % wenn .bib in utf8, sonst ascii<br />

bibwarn=true, % Warnung bei fehlerhafter bib-Datei<br />

◮ Fehlermeldung: (biblatex) - Invalid format of field ’month’.<br />

Anpassung der bib-Dateien: Monatsangaben müssen als Zahlen<br />

(1-12) angegeben werden.<br />

◮ bib-Encoding kann vom <strong>LaTeX</strong>-Encoding abweichen!<br />

(siehe Dokumentation Abschnitt: 2.4.3.4)


Zusammenfassung<br />

biblatex und biber Zusammenfassung<br />

◮ biblatex löst viele Probleme <strong>mit</strong> <strong>Bibliographien</strong> und ersetzt alle<br />

vorherigen Pakete.<br />

◮ biber ist speziell für biblatex entwickelt worden und löst bibtex ab.<br />

◮ die Anpassungen im <strong>LaTeX</strong> Code sind gering.<br />

◮ die Darstellung der Zitate und <strong>Bibliographien</strong> lässt sich in jedem<br />

Detail verändern.<br />

◮ biblatex und biber werden aktiv weiterentwickelt und sind sehr<br />

gut dokumentiert.


iblatex und biber Übung<br />

Übung: biblatex verwenden<br />

Aufgabe<br />

◮ <strong>LaTeX</strong>-Dokument (Übung/(a) biblatex/biblatexdemo.tex)<br />

so erweitern, dass <strong>mit</strong> biblatex und biber die Literatur zitiert wird.<br />

◮ Verwendung der Optionen für: Initialen, Ausschalten von URLs.<br />

Bedienung von TeXStudio:<br />

F6 pdflatex (PDF erstellen)<br />

F7 PDF anschauen<br />

F11 bibtex/biber (Bibliographie erstellen)


Inhalt<br />

Literatur erstellen und verwalten (JabRef)<br />

1 <strong>LaTeX</strong> und BibTeX<br />

2 biblatex und biber<br />

3 Literatur erstellen und verwalten (JabRef)<br />

4 Literaturverwaltung in Word<br />

5 Anhang


Literatur erstellen und verwalten (JabRef) JabRef<br />

Jabref (aktuelle Version: 2.7)


Jabref<br />

Funktionen<br />

Literatur erstellen und verwalten (JabRef) JabRef<br />

◮ Verwaltung von bib-Dateien (Erstellen, Hinzufügen, Suchen)<br />

◮ Automatische Erzeugung von Bibtexkeys<br />

◮ Import von <strong>Bibliographien</strong> (bib, ris, . . . )


Literatur erstellen und verwalten (JabRef) Literaturdaten finden<br />

Daten für Artikel finden<br />

◮ Exportfunktionen der Verlagswebseiten<br />

Optics Express


Literatur erstellen und verwalten (JabRef) Literaturdaten finden<br />

Daten für Artikel finden<br />

◮ Exportfunktionen der Verlagswebseiten<br />

Springerlink


Literatur erstellen und verwalten (JabRef) Literaturdaten finden<br />

Daten für Bücher finden<br />

◮ google scholar (http://scholar.google.de/)<br />

Bibtex export aktivieren


Literatur erstellen und verwalten (JabRef) Literaturdaten finden<br />

Daten für Bücher finden<br />

◮ google scholar (http://scholar.google.de/)<br />

Suche nach „Nonlinear Optics“


Literatur erstellen und verwalten (JabRef) Literaturdaten finden<br />

Daten für Bücher finden<br />

◮ google scholar (http://scholar.google.de/)<br />

Suche nach „Nonlinear Optics“ liefert den bibtex code:<br />

@book{boyd2003nonlinear,<br />

}<br />

title={Nonlinear optics},<br />

author={Boyd, R.W.},<br />

year={2003},<br />

publisher={Academic Pr}


Eintragen in Jabref<br />

Literatur erstellen und verwalten (JabRef) Literaturdaten eintragen<br />

neues Buch hinzufügen (leer)


Eintragen in Jabref<br />

Literatur erstellen und verwalten (JabRef) Literaturdaten eintragen<br />

bibtex Daten einfügen


Eintragen in Jabref<br />

Literatur erstellen und verwalten (JabRef) Literaturdaten eintragen<br />

bibtexkey formatieren


Literatur erstellen und verwalten (JabRef) Einstellungen<br />

Einstellungen in Jabref<br />

Options➞ Preferences ➞ Bibtex Key Generator<br />

Pattern bibtex key<br />

[auth][year] <strong>Pospiech</strong>2011<br />

[auth4][year] Posp2011<br />

[authors2][year] <strong>Pospiech</strong>EmonsEtAl2011<br />

[authorsAlpha][year] PEK+2011


Literatur erstellen und verwalten (JabRef) Einstellungen<br />

Einstellungen in Jabref<br />

File ➞ Database Properties➞ Database Encoding<br />

◮ Cp1252 (Standard)<br />

◮ UTF8 – bevorzugt <strong>mit</strong> biber+biblatex verwenden


Literatur erstellen und verwalten (JabRef) Einstellungen<br />

Einstellungen in Jabref<br />

File ➞ Database Properties➞ Database Encoding<br />

◮ Cp1252 (Standard)<br />

◮ UTF8 – bevorzugt <strong>mit</strong> biber+biblatex verwenden<br />

Options➞ Preferences ➞ Advanced<br />

◮ Bib<strong>LaTeX</strong> mode: Erweiterte Felder von biblatex aktivieren.


Literatur erstellen und verwalten (JabRef) Übung<br />

Übung: Erstellung einer neuen bib-Datei:<br />

Aufgabe<br />

◮ Literaturdaten suchen für:<br />

◮ Fundamentals of photonics, Saleh<br />

◮ Advanced optical imaging theory, Min Gu<br />

◮ <strong>Pospiech</strong>, „Single-Sweep Production of Complex 3-D-Waveguide<br />

Devices Produced by Adaptive Femtosecond Laser Writing“<br />

◮ A. L. Schawlow, „Infrared and Optical Masers“<br />

Bibliographiedaten der Verlage den Daten von google scholar vorziehen.<br />

◮ bibtex Datei <strong>mit</strong> UTF8 Encoding erstellen.<br />

◮ In <strong>LaTeX</strong>-Datei (LiteraturZusammenstellung.tex) Bibliogra-<br />

phie laden und alle Einträge <strong>mit</strong> \nocite{*} zitieren.


Inhalt<br />

1 <strong>LaTeX</strong> und BibTeX<br />

2 biblatex und biber<br />

Literaturverwaltung in Word<br />

3 Literatur erstellen und verwalten (JabRef)<br />

4 Literaturverwaltung in Word<br />

5 Anhang


Literaturverwaltung in Word bibtex4word<br />

Zitate und <strong>Bibliographien</strong> in Word <strong>mit</strong> BibTeX<br />

bibtex4word 3<br />

Add-in für Microsoft Word <strong>mit</strong> dem Referenzen und<br />

<strong>Bibliographien</strong> auf Basis einer .bib Datei (BibTeX) eingefügt<br />

werden können.<br />

Benötigt: Installiertes <strong>LaTeX</strong>-System (MikTeX/ TeX Live).<br />

3 http://www.ee.ic.ac.uk/hp/staff/dmb/perl/index.html


Literaturverwaltung in Word bibtex4word<br />

Zitate und <strong>Bibliographien</strong> in Word <strong>mit</strong> BibTeX<br />

Installation<br />

◮ Word schließen<br />

◮ bibtex4word.zip herunterladen und entpacken<br />

◮ bibtex4word.dot kopieren nach<br />

Win 7: C:/Users/pospiech/AppData/Roaming/<br />

Microsoft/Word/STARTUP/<br />

XP: C:/Dokumente und Einstellungen/pospiech/<br />

ApplicationData/Microsoft/Word/STARTUP/<br />

◮ Word starten


Installation für TeX Live<br />

Literaturverwaltung in Word bibtex4word<br />

Notwendig aufgrund von Sicherheits-Beschränkungen.<br />

◮ BibTeX-Programm explizit definieren: bibtex4word.bat<br />

◮ bibtex4word.bat kopieren nach (z. B.) Dokumente.<br />

◮ Umgebungsvariable BIBEXE definieren (Taste Windows + Pause,<br />

Erweiterte Systemeinstellungen, Umgebungsvariablen) <strong>mit</strong><br />

C:\Users\\Documents\bibtex4word.bat.<br />

◮ Inhalt von bibtex4word.bat<br />

@echo off<br />

cd "C:%HOMEPATH%\AppData\Local\Temp"<br />

bibtex bibtex4word


Verwendung in Word<br />

◮ BibTeX Datei laden.<br />

◮ Zitate einfügen<br />

Literaturverwaltung in Word bibtex4word<br />

◮ Literaturverzeichnis erstellen lassen


Beispiele<br />

Literaturverwaltung in Word Beispiele<br />

Bearbeitung der Zitate (in Word)


Beispiele<br />

Referenzen (in Word)<br />

Literaturverwaltung in Word Beispiele<br />

1.2 Referenzen<br />

[1] Ando, Hideo, Phase-Shifting Apodizer of Three or More Portions. Japanese Journal of Applied<br />

Physics (1992), Band 31(Part 1, No. 2B), S. 557–567<br />

[2] Boyer, Gilbert, New class of axially apodizing filters for confocal scanning microscopy. J. Opt. Soc.<br />

Am. A (2002), Band 19(3), S. 584–589<br />

[3] Cox, Ingemar J., Increasing the bit packing densities of optical disk systems. Appl. Opt. (1984),<br />

Band 23(19), S. 3260–3261<br />

[4] de Juana, Daniel M.; Oti, José E.; Canales, Vidal F. und Cagigal, Manuel P., Design of superresolving<br />

continuous phase filters. Opt. Lett. (2003), Band 28(8), S. 607–609<br />

[5] de Juana; Canales, V. F.; Valle, P. J. und Cagigal, M. P., Focusing properties of annular binary<br />

phase filters. Optics Communications (2004), Band 229, S. 71–77<br />

[6] Hecht, Eugene, Optics (4th Edition). Addison Wesley, 4 Auflage (2001)<br />

[7] Liu, Haitao; Yan, Yingbai und Jin, Guofan, Design and experimental test of diffractive superresolution<br />

elements. Appl. Opt. (2006), Band 45(1), S. 95–99<br />

[8] Liu, Linbo; Diaz, Frédéric; Wang, Liang; Loiseaux, Brigitte; Huignard, Jean-Pierre; Sheppard,<br />

C. J. R. und Chen, Nanguang, Superresolution along extended depth of focus with binary-phase filters<br />

for the Gaussian beam. J. Opt. Soc. Am. A (2008), Band 25(8), S. 2095–2101<br />

[9] Shinoda, Masahisa und Kime, Kenjiro, Focusing Characteristics of an Optical Head with Superresolution<br />

Using a High-Aspect-Ratio Red Laser Diode. Japanese Journal of Applied Physics (1996),<br />

Sortierung: Autor (alphabetisch), Jahr.


Beispiele<br />

Druckansicht (in Word)<br />

Literaturverwaltung in Word Beispiele<br />

1.1 Wissenschaftlicher und technischer Stand zu Projektb<br />

Im Rahmen der Bildgebung bezieht sich der Begriff Superauflösung au<br />

lösung eines bildgebenden Systems über den beugungsbegrenzten W<br />

perauflösung wird erreicht durch Veränderung der transversalen Phas<br />

des Laserstrahls. Sie wurde in vielen Anwendungen wie der konfokale<br />

[2, 4] oder der optischen Datenspeicherung [3, 9] erfolgreich eingeset<br />

ein Phasenfilter vor die Austrittsblende des optischen Systems (hier de<br />

wie in Abbildung 1 dargestellt.<br />

Diese Phasenfilter beruhen auf zwei oder mehr ringförmigen Zonen<br />

renz von π [1, 5, 8]. Die Reduktion der Strahlgröße ist typischerweise b<br />

der Fokuslänge (depth of focus, DOF) [8, 11]. Diese Phasenfilter hab<br />

optischen Phasenformern, wie verformbaren Spiegeln (deformable mi


Literaturverwaltung in Word Sortierung der Zitate<br />

Nummerierung/Sortierung der Zitate<br />

Nummeriert:<br />

◮ Autor alphabetisch: plain, plainnat, plaindin, abbrv, . . .<br />

Artikel [4, 2], Dissertation [3], Buch [1]<br />

[1] Max Born and Emil Wolf. Principles of Optics: Electromagnetic<br />

ence and Diffraction of Light (7th Edition). Cambridge Unive<br />

1999.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Gu<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Expres<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Tr<br />

Harvard University, 2001.<br />

[4] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):13


Literaturverwaltung in Word Sortierung der Zitate<br />

Nummerierung/Sortierung der Zitate<br />

Nummeriert:<br />

◮ Autor alphabetisch: plain, plainnat, plaindin, abbrv, . . .<br />

◮ Zitatreihenfolge: unsrt, unsrtnat, unsrtdin<br />

Artikel [1, 2], Dissertation [3], Buch [4]<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):13<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Gu<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Expres<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Tr<br />

Harvard University, 2001.<br />

[4] Max Born and Emil Wolf. Principles of Optics: Electromagnetic


Literaturverwaltung in Word Sortierung der Zitate<br />

Nummerierung/Sortierung der Zitate<br />

Nummeriert:<br />

◮ Autor alphabetisch: plain, plainnat, plaindin, abbrv, . . .<br />

◮ Zitatreihenfolge: unsrt, unsrtnat, unsrtdin<br />

Kürzel:<br />

◮ Autor alphabetisch: alpha, alphadin<br />

Artikel [ZWW03, PEV+10], Dissertation [Sch01], Buch [BW99]<br />

[BW99] Max Born and Emil Wolf. Principles of Optics: Electroma<br />

terference and Diffraction of Light (7th Edition). Cambrid<br />

October 1999.<br />

[PEV + 10] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckens<br />

Morgner. Single-sweep laser writing of 3d-waveguide de


Optionen<br />

Literaturverwaltung in Word Optionen<br />

Festlegung des Stil und Optionen [Button <strong>mit</strong> Pinsel-Symbol]:<br />

alphadin<br />

<br />

Bibtex Stil<br />

/ nducs<br />

<br />

Optionen


Literaturverwaltung in Word Optionen<br />

Optionen: Darstellung der Bibliographie<br />

n Erzwingt nummerierte Liste unabhängig vom bibtex Stil.<br />

alphadinpospiech/n<br />

Artikel [4, 2], Dissertation [3], Buch [1],<br />

[1] Born, Max und Wolf, Emil, Principles of Optics: Electro<br />

ence and Diffraction of Light (7th Edition). Cambridge U<br />

[2] <strong>Pospiech</strong>, <strong>Matthias</strong>; Emons, Moritz; Väckenstedt, Benj<br />

Single-sweep laser writing of 3D-waveguide devices. Opt.<br />

[3] Schaffer, C. B., Interaction of Femtosecond Laser Pulses<br />

Harvard University (2001)<br />

[4] Zipfel, Warren R.; Williams, Rebecca M. und Webb, W<br />

croscopy in the biosciences. Nature Biotechnology (2003),


Literaturverwaltung in Word Optionen<br />

Optionen: Darstellung der Bibliographie<br />

n Erzwingt nummerierte Liste unabhängig vom bibtex Stil.<br />

d konvertiert DOI Referenzen in Hyperlinks<br />

u konvertiert URLs in Hyperlinks<br />

alphadin/ndu<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] BORN, Max ; WOLF, Emil: Principles of Optics: Electrom<br />

and Diffraction of Light (7th Edition). 7th. Cam<br />

www.worldcat.org/isbn/0521642221. – ISBN 052164222<br />

[2] POSPIECH, <strong>Matthias</strong> ; EMONS, Moritz ; VÄCKENSTEDT,<br />

Uwe: Single-sweep laser writing of 3D-waveguide devic<br />

7001. http://dx.doi.org/10.1364/OE.18.006994. – DOI 10<br />

[3] SCHAFFER, C. B.: Interaction of Femtosecond Laser Pu<br />

University, Diss., 2001


Literaturverwaltung in Word Optionen<br />

Optionen: Darstellung der Bibliographie<br />

n Erzwingt nummerierte Liste unabhängig vom bibtex Stil.<br />

d konvertiert DOI Referenzen in Hyperlinks<br />

u konvertiert URLs in Hyperlinks<br />

. Klammern in Labels weglassen<br />

plain/n. Artikel [4, 2], Dissertation [3], Buch [1],<br />

1. Born, Max und Wolf, Emil, Principles of Optics: Electro<br />

ence and Diffraction of Light (7th Edition). Cambridge U<br />

2. <strong>Pospiech</strong>, <strong>Matthias</strong>; Emons, Moritz; Väckenstedt, Benj<br />

Single-sweep laser writing of 3D-waveguide devices. Opt.<br />

3. Schaffer, C. B., Interaction of Femtosecond Laser Pulses<br />

Harvard University (2001)


Literaturverwaltung in Word Optionen<br />

Optionen: Darstellung der Bibliographie<br />

n Erzwingt nummerierte Liste unabhängig vom bibtex Stil.<br />

d konvertiert DOI Referenzen in Hyperlinks<br />

u konvertiert URLs in Hyperlinks<br />

. Klammern in Labels weglassen<br />

) Runde Klammern für die Labels<br />

plain/n) Artikel [2, 4], Dissertation [3], Buch [1]<br />

(1) Max Born and Emil Wolf. Principles of Optics: Electrom<br />

and Diffraction of Light (7th Edition). Cambridge Unive<br />

(2) <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väcken<br />

Single-sweep laser writing of 3d-waveguide devices. Opt<br />

(3) C. B. Schaffer. Interaction of Femtosecond Laser Pulses


Literaturverwaltung in Word Optionen<br />

Optionen: Darstellung der Referenzen<br />

c Komprimierte Referenzen:<br />

[1 - 4] anstelle von [1, 2, 3, 4]<br />

s Sortiert die Referenzen:<br />

[1, 2, 3, 4] anstelle von [2, 4, 1, 3]<br />

] Klammern in den Referenzen weglassen:<br />

1, 2 anstelle von [1, 2]<br />

) Runde Klammern für die Referenzen:<br />

(1, 2) anstelle von [1, 2]<br />

ˆ Referenzen hochestellt:<br />

. . . 1, 2 anstelle von [1, 2]


Optionen: Empfehlung<br />

Stile<br />

Literaturverwaltung in Word Optionen<br />

◮ alpha, plain englische Texte, alphabetisch sortiert<br />

◮ unsrt englische Texte, nicht sortiert<br />

◮ AlphaDin<strong>Pospiech</strong> 3 deutsche Texte, sortiert, ohne URLs<br />

Optionen<br />

◮ ncs nummeriert, sortiert und komprimiert: [1-3, 5]<br />

3 <strong>mit</strong> custom-bib erstellt


Was geht nicht . . .<br />

Literaturverwaltung in Word Probleme, Inkompatibilitäten<br />

◮ inkompatibel zu biber und biblatex<br />

d.h: bibtex Dateien für biber in utf8 können nicht für bibtex4word<br />

verwendet werden.<br />

◮ bibtex1.bib (latin1, Umlaute als Befehle) bibtex4word<br />

◮ bibtex2.bib (utf8) biber + biblatex


Literaturverwaltung in Word Übung<br />

Übung: bibtex4word verwenden<br />

Aufgabe<br />

◮ <strong>LaTeX</strong> Dokument in Word nachbauen und <strong>mit</strong> bibtex4word Zitate<br />

und Bibliographie einfügen.<br />

◮ Stil der Bibliographie: nummeriert, alphabetisch sortiert, Zitate<br />

sortiert und komprimiert, Nummierung ohne Klammern <strong>mit</strong> Punkt.


Zitatstile<br />

unsrt - Nummeriert, nicht sortiert<br />

Artikel [1, 2], Dissertation [3], Buch [4]<br />

Anhang Stile (bst): plain, unsrt, abbrv<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer, and Uwe Morgner.<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Express, 18(7):6994–7001, 2010.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.


Zitatstile<br />

Anhang Stile (bst): plain, unsrt, abbrv<br />

plain - Nummeriert, sortiert (Author, Jahr)<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer, and Uwe Morgner.<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Express, 18(7):6994–7001, 2010.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.


Zitatstile<br />

Anhang Stile (bst): plain, unsrt, abbrv<br />

abbrv - Nummeriert, sortiert (Author, Jahr), Namen gekürzt<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] M. Born and E. Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition, October 1999.<br />

[2] M. <strong>Pospiech</strong>, M. Emons, B. Väckenstedt, G. Palmer, and U. Morgner. Single-sweep laser<br />

writing of 3d-waveguide devices. Opt. Express, 18(7):6994–7001, 2010.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] W. R. Zipfel, R. M. Williams, and W. W. Webb. Nonlinear magic: multiphoton microscopy<br />

in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003.


Zitatstile<br />

unsrtnat - Nummeriert, nicht sortiert<br />

Artikel [1, 2], Dissertation [3], Buch [4]<br />

Anhang Stile (bst): plainnat, unsrtnat, abbrvnat<br />

[1] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003. doi:<br />

10.1038/nbt899. URL http://dx.doi.org/10.1038/nbt899.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer,<br />

and Uwe Morgner. Single-sweep laser writing of 3d-waveguide devices.<br />

Opt. Express, 18(7):6994–7001, 2010. doi: 10.1364/OE.18.006994. URL<br />

http://www.opticsexpress.org/abstract.cfm?URI=oe-18-7-6994.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999. ISBN 0521642221. URL http://www.worldcat.org/isbn/0521642221.


Zitatstile<br />

Anhang Stile (bst): plainnat, unsrtnat, abbrvnat<br />

plainnat - Nummeriert, sortiert (Author, Jahr)<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition,<br />

October 1999. ISBN 0521642221. URL http://www.worldcat.org/isbn/0521642221.<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer,<br />

and Uwe Morgner. Single-sweep laser writing of 3d-waveguide devices.<br />

Opt. Express, 18(7):6994–7001, 2010. doi: 10.1364/OE.18.006994. URL<br />

http://www.opticsexpress.org/abstract.cfm?URI=oe-18-7-6994.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003. doi:<br />

10.1038/nbt899. URL http://dx.doi.org/10.1038/nbt899.


Zitatstile<br />

Anhang Stile (bst): plainnat, unsrtnat, abbrvnat<br />

abbrvnat - Nummeriert, sortiert (Author, Jahr), Namen gekürzt<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] M. Born and E. Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition, October 1999.<br />

ISBN 0521642221. URL http://www.worldcat.org/isbn/0521642221.<br />

[2] M. <strong>Pospiech</strong>, M. Emons, B. Väckenstedt, G. Palmer, and U. Morgner.<br />

Single-sweep laser writing of 3d-waveguide devices. Opt. Express,<br />

18(7):6994–7001, 2010. doi: 10.1364/OE.18.006994. URL<br />

http://www.opticsexpress.org/abstract.cfm?URI=oe-18-7-6994.<br />

[3] C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

[4] W. R. Zipfel, R. M. Williams, and W. W. Webb. Nonlinear magic: multiphoton microscopy in<br />

the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003. doi: 10.1038/nbt899. URL<br />

http://dx.doi.org/10.1038/nbt899.


Zitatstile<br />

Anhang Stile (bst): plaindin, unsrtdin, abbrvdin<br />

unsrtdin - Nummeriert, nicht sortiert, deutsch<br />

Artikel [1, 2], Dissertation [3], Buch [4]<br />

[1] Zipfel, Warren R. ; Williams, Rebecca M. ; Webb, Watt W.: Nonlinear magic: multiphoton<br />

microscopy in the biosciences. In: Nature Biotechnology 21 (2003), Nr. 11, 1369–1377.<br />

http://dx.doi.org/10.1038/nbt899. – DOI 10.1038/nbt899<br />

[2] <strong>Pospiech</strong>, <strong>Matthias</strong> ; Emons, Moritz ; Väckenstedt, Benjamin ; Palmer, Guido ; Morgner,<br />

Uwe: Single-sweep laser writing of 3D-waveguide devices. In: Opt. Express<br />

18 (2010), Nr. 7, 6994–7001. http://dx.doi.org/10.1364/OE.18.006994. – DOI<br />

10.1364/OE.18.006994<br />

[3] Schaffer, C. B.: Interaction of Femtosecond Laser Pulses with Transparent Materials, Harvard<br />

University, Diss., 2001<br />

[4] Born, Max ; Wolf, Emil: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press<br />

http://www.worldcat.org/isbn/0521642221. – ISBN 0521642221


Zitatstile<br />

Anhang Stile (bst): plaindin, unsrtdin, abbrvdin<br />

plaindin - Nummeriert, sortiert (Author, Jahr), deutsch<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] Born, Max ; Wolf, Emil: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press<br />

http://www.worldcat.org/isbn/0521642221. – ISBN 0521642221<br />

[2] <strong>Pospiech</strong>, <strong>Matthias</strong> ; Emons, Moritz ; Väckenstedt, Benjamin ; Palmer, Guido ; Morgner,<br />

Uwe: Single-sweep laser writing of 3D-waveguide devices. In: Opt. Express<br />

18 (2010), Nr. 7, 6994–7001. http://dx.doi.org/10.1364/OE.18.006994. – DOI<br />

10.1364/OE.18.006994<br />

[3] Schaffer, C. B.: Interaction of Femtosecond Laser Pulses with Transparent Materials, Harvard<br />

University, Diss., 2001<br />

[4] Zipfel, Warren R. ; Williams, Rebecca M. ; Webb, Watt W.: Nonlinear magic: multiphoton<br />

microscopy in the biosciences. In: Nature Biotechnology 21 (2003), Nr. 11, 1369–1377.<br />

http://dx.doi.org/10.1038/nbt899. – DOI 10.1038/nbt899


Zitatstile<br />

Anhang Stile (bst): plaindin, unsrtdin, abbrvdin<br />

abbrvdin - Nummeriert, sortiert (Author, Jahr), Namen gekürzt,<br />

deutsch<br />

Artikel [2, 4], Dissertation [3], Buch [1]<br />

[1] Born, M. ; Wolf, E. : Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). 7th. Cambridge University Press<br />

http://www.worldcat.org/isbn/0521642221. – ISBN 0521642221<br />

[2] <strong>Pospiech</strong>, M. ; Emons, M. ; Väckenstedt, B. ; Palmer, G. ; Morgner, U. : Singlesweep<br />

laser writing of 3D-waveguide devices. In: Opt. Express 18 (2010), Nr. 7, 6994–7001.<br />

http://dx.doi.org/10.1364/OE.18.006994. – DOI 10.1364/OE.18.006994<br />

[3] Schaffer, C. B.: Interaction of Femtosecond Laser Pulses with Transparent Materials, Harvard<br />

University, Diss., 2001<br />

[4] Zipfel, W. R. ; Williams, R. M. ; Webb, W. W.: Nonlinear magic: multiphoton microscopy<br />

in the biosciences. In: Nature Biotechnology 21 (2003), Nr. 11, 1369–1377.<br />

http://dx.doi.org/10.1038/nbt899. – DOI 10.1038/nbt899


Zitatstile<br />

plainnat, authoryear - Author + Jahr<br />

Anhang Stile (bst): Author-Jahr<br />

Artikel <strong>Pospiech</strong> et al. [2010], Zipfel et al. [2003], Dissertation Schaffer [2001], Buch Born and<br />

Wolf [1999]<br />

Max Born and Emil Wolf. Principles of Optics: Electromagnetic Theory of Propagation, Interference<br />

and Diffraction of Light (7th Edition). Cambridge University Press, 7th edition, October 1999.<br />

ISBN 0521642221. URL http://www.worldcat.org/isbn/0521642221.<br />

<strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer,<br />

and Uwe Morgner. Single-sweep laser writing of 3d-waveguide devices.<br />

Opt. Express, 18(7):6994–7001, 2010. doi: 10.1364/OE.18.006994. URL<br />

http://www.opticsexpress.org/abstract.cfm?URI=oe-18-7-6994.<br />

C. B. Schaffer. Interaction of Femtosecond Laser Pulses with Transparent Materials. PhD thesis,<br />

Harvard University, 2001.<br />

Warren R. Zipfel, Rebecca M. Williams, and Watt W. Webb. Nonlinear magic: multiphoton<br />

microscopy in the biosciences. Nature Biotechnology, 21(11):1369–1377, 2003. doi:<br />

10.1038/nbt899. URL http://dx.doi.org/10.1038/nbt899.


Zitatstile: biblatex<br />

Anhang Stile (biblatex): numeric-comp, alphabetic, authoryear<br />

Option: numeric-comp - Nummeriert, sortiert (Author, Jahr), deutsch<br />

Artikel [4, 2], Dissertation [3], Buch [1]<br />

[1] Max Born und Emil Wolf: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press, 1999<br />

(siehe S. 1).<br />

[2] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer und Uwe<br />

Morgner: “Single-sweep laser writing of 3D-waveguide devices”. Opt. Express (2010), Bd.<br />

18(7): S. 6994–7001 (siehe S. 1).<br />

[3] C. B. Schaffer: “Interaction of Femtosecond Laser Pulses with Transparent Materials”.<br />

Diss. Harvard University, 2001 (siehe S. 1).<br />

[4] Warren R. Zipfel, Rebecca M. Williams und Watt W. Webb: “Nonlinear magic: multiphoton<br />

microscopy in the biosciences”. Nature Biotechnology (2003), Bd. 21(11): S. 1369–<br />

1377 (siehe S. 1).


Zitatstile: biblatex<br />

Anhang Stile (biblatex): numeric-comp, alphabetic, authoryear<br />

Option: alphabetic - Kürzel (angepasst), sortiert (Author, Jahr), deutsch<br />

Artikel [Zip03; Pos10], Dissertation [Sch01], Buch [Bor99]<br />

[Bor99] Max Born und Emil Wolf: Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press,<br />

1999 (siehe S. 1).<br />

[Pos10] <strong>Matthias</strong> <strong>Pospiech</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer und<br />

Uwe Morgner: “Single-sweep laser writing of 3D-waveguide devices”. Opt. Express<br />

(2010), Bd. 18(7): S. 6994–7001 (siehe S. 1).<br />

[Sch01] C. B. Schaffer: “Interaction of Femtosecond Laser Pulses with Transparent Materials”.<br />

Diss. Harvard University, 2001 (siehe S. 1).<br />

[Zip03] Warren R. Zipfel, Rebecca M. Williams und Watt W. Webb: “Nonlinear magic:<br />

multiphoton microscopy in the biosciences”. Nature Biotechnology (2003), Bd. 21(11):<br />

S. 1369–1377 (siehe S. 1).


Zitatstile: biblatex<br />

Option: authoryear - Author + Jahr, deutsch<br />

Anhang Stile (biblatex): numeric-comp, alphabetic, authoryear<br />

Artikel Zipfel u. a., 2003; <strong>Pospiech</strong> u. a., 2010, Dissertation Schaffer, 2001, Buch Born u. a.,<br />

1999<br />

Born, Max und Emil Wolf (1999): Principles of Optics: Electromagnetic Theory of Propagation,<br />

Interference and Diffraction of Light (7th Edition). 7th. Cambridge University Press (siehe S. 1).<br />

<strong>Pospiech</strong>, <strong>Matthias</strong>, Moritz Emons, Benjamin Väckenstedt, Guido Palmer und Uwe<br />

Morgner (2010): “Single-sweep laser writing of 3D-waveguide devices”. Opt. Express, Bd.<br />

18(7): S. 6994–7001 (siehe S. 1).<br />

Schaffer, C. B. (2001): “Interaction of Femtosecond Laser Pulses with Transparent Materials”.<br />

Diss. Harvard University (siehe S. 1).<br />

Zipfel, Warren R., Rebecca M. Williams und Watt W. Webb (2003): “Nonlinear magic:<br />

multiphoton microscopy in the biosciences”. Nature Biotechnology, Bd. 21(11): S. 1369–1377<br />

(siehe S. 1).

Hurra! Ihre Datei wurde hochgeladen und ist bereit für die Veröffentlichung.

Erfolgreich gespeichert!

Leider ist etwas schief gelaufen!