Bibliografie: Einen benutzerdefinierten Bibliografiestil erreichen

Bibliografie: Einen benutzerdefinierten Bibliografiestil erreichen

Ich muss biblatexden folgenden Zitierstil einrichten:

Buch: 1. Doe, J.: Buchtitel. Verlag, Ort (Datum)

Artikel: 1. Doe, J.: Titel. Zeitschrift. Nummer (Ausgabe), Seiten (Jahr)

Kapitel: 1. Doe, J.: Kapiteltitel. In: DoeEditor, J. (Hrsg.) Buchtitel, Seiten. Verlag, Ort (Jahr)

inProceedings: 1. Doe, J.: Titel. In: Proceedings Titel, S. Seiten. Standort (Jahr)

So weit bin ich gekommen:

\documentclass{article}

\usepackage[style=numeric, 
            backend=biber,
            firstinits=true]{biblatex}
\addbibresource{references.bib}
\DeclareFieldFormat{labelnumberwidth}{#1\adddot}
\renewcommand*{\labelnamepunct}{\addcolon\space}
\DeclareNameAlias{default}{last-first}
\DeclareFieldFormat[article, book, incollection, report]{title}{#1} 
\DeclareFieldFormat[proceedings, inproceedings]{maintitle}{#1} 
\DeclareFieldFormat[article]{journaltitle}{#1\adddot}
\DeclareFieldFormat[inproceedings, incollection]{booktitle}{#1\adddot}
\renewbibmacro{in:}{%
  \ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}
\renewbibmacro*{volume+number+eid}{%
  \printfield{volume}%
  \setunit*{\addspace}%
  \printfield[parens]{number}%
  \setunit{\addcomma\space}%
}

\begin{document}
Examples \cite{Doe2014} \cite{Doe2016} \cite{Doe2017} \cite{Doe32015}

\printbibliography
\end{document}

und die Ausgabe ist: Bildbeschreibung hier eingeben

Meine Fragen sind:

  • Wie kann ich das Jahr als Feld angeben und ( ) in allen Eingabearten verwenden?
  • Wie kann ich die Seitenanzahl aus dem Seitenfeld entfernen?
  • Wie kann ich das „ “ aus dem inProceedings-Titel entfernen?
  • Wie kann ich das Editorfeld im Buchkapitel neu formatieren, um es meinen Anforderungen anzupassen?

Bib-Dateibeispiel:

@Book{Doe2017,
  author    = {Doe, Jhon},
  title     = {A Book Title},
  year      = {2017},
  publisher = {Some Publisher},
  location  = {Some Location},
}

@Article{Doe2016,
  author  = {Doe, Jhon and Doe2, Jhon2},
  title   = {Some journal article},
  journal = {Fancy Journal},
  year    = {2016},
  volume  = {56},
  number  = {3},
  pages   = {1-99},
}

@InCollection{Doe32015,
  author    = {Doe3, Jhon3},
  title     = {A book chapter},
  booktitle = {A book title},
  year      = {2015},
  editor    = {Editor1, Name and Editor2, Name2},
  publisher = {Some publisher},
  location  = {Some location},
  pages     = {54-82},
}

@InProceedings{Doe2014,
  author    = {Doe, Martha},
  title     = {A conference paper},
  booktitle = {Fancy Conference Proceedings},
  year      = {2014},
  location  = {Touristy Location},
  pages     = {1-10},
}

Antwort1

Versuchen

\documentclass{article}

\usepackage[style=numeric, 
            backend=biber,
            firstinits=true]{biblatex}


\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{Doe2017,
  author    = {Doe, Jhon},
  title     = {A Book Title},
  year      = {2017},
  publisher = {Some Publisher},
  location  = {Some Location},
}

@Article{Doe2016,
  author  = {Doe, Jhon and Doe2, Jhon2},
  title   = {Some journal article},
  journal = {Fancy Journal},
  year    = {2016},
  volume  = {56},
  number  = {3},
  pages   = {1-99},
}

@InCollection{Doe32015,
  author    = {Doe3, Jhon3},
  title     = {A book chapter},
  booktitle = {A book title},
  year      = {2015},
  editor    = {Editor1, Name and Editor2, Name2},
  publisher = {Some publisher},
  location  = {Some location},
  pages     = {54-82},
}

@InProceedings{Doe2014,
  author    = {Doe, Martha},
  title     = {A conference paper},
  booktitle = {Fancy Conference Proceedings},
  year      = {2014},
  location  = {Touristy Location},
  pages     = {1-10},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\DeclareFieldFormat{labelnumberwidth}{#1\adddot}

\renewcommand*{\labelnamepunct}{\addcolon\space}

\DeclareNameAlias{default}{family-given}

\DeclareFieldFormat*{title}{#1} 
\DeclareFieldFormat*{maintitle}{#1} 
\DeclareFieldFormat{journaltitle}{#1}
\DeclareFieldFormat*{booktitle}{#1}
\DeclareFieldFormat[article,periodical]{number}{\mkbibparens{#1}}

\renewbibmacro{in:}{%
  \ifentrytype{article}{}{\printtext{\bibstring{in}\intitlepunct}}}

\renewbibmacro*{volume+number+eid}{%
  \printfield{volume}%
  \setunit*{\addspace}%
  \printfield{number}%
  \setunit{\addcomma\space}%
  \printfield{eid}}

\DeclareFieldFormat*{date}{\mkbibparens{#1}}

\newbibmacro*{pubinstorg+location}[1]{%
  \printlist{location}%
  \iflistundef{#1}
    {\setunit*{\addcomma\space}}
    {\setunit*{\addcolon\space}}%
  \printlist{#1}%
  \newunit}

\renewbibmacro*{publisher+location+date}{\usebibmacro{pubinstorg+location}{publisher}}
\renewbibmacro*{institution+location+date}{\usebibmacro{pubinstorg+location}{institution}}
\renewbibmacro*{organization+location+date}{\usebibmacro{pubinstorg+location}{organization}}

\renewbibmacro*{issue+date}{%
  \iffieldundef{issue}
    {}
    {\printtext[parens]{\printfield{issue}}}%
  \newunit}

\newbibmacro*{addendum+pubstate}{%
  \printfield{addendum}%
  \newunit\newblock
  \printfield{pubstate}}
\newbibmacro*{addendum+pubstate}{%
  \printfield{addendum}%
  \newunit\newblock
  \printfield{pubstate}%
  \setunit{\addspace}%
  \printdate}


\begin{document}
Examples \cite{Doe2014} \cite{Doe2016} \cite{Doe2017} \cite{Doe32015}

\printbibliography
\end{document}

Und schauen Sie sich an@inbook mit Biblatex zitieren: Wie platziert man Autoren/Herausgeber vor dem Buchtitel?UndVerschieben Sie die Namen der Herausgeber gefolgt von (Ed./Eds.) und einem Komma vor den Titel in Biblatexfür die Redaktionsbestellung.

verwandte Informationen