I need a special Bibliography-Style, as prescribed for my thesis.
FOR BOOKS:
[1] Surname, Forename. (Year of publication). Title(italic). Publishing-place: Publisher.
FOR NEWSPAPERS:
[1] Surname, Forename. (Year of publication, publication-date). Title. Name of the Newspaper(italic), Page.
FOR WEBSITES:
[1] Surname, Forename. (Year of publication). Title(italic). URL, Today's Date.
I haven't found any template, so I think I have to create my own. I already created a custom bibliography-style with custom-bib. Now I have the file myoutput.bst. I've copied it in many places like ~/texmf/bibtex/bst/ or even /usr/share/texlive/texmf-dist/myoutput. But TeXmaker says: ! Package biblatex Error: Style 'myoutput' not found.
\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[babel,german=swiss]{csquotes}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{lmodern}
\title{title}
\usepackage[bibstyle=myoutput,backend=bibtex]{biblatex}
\bibliography{literaturverzeichnis}
\begin{document}
\include{kapitel/vorwort}
\section{Einleitung}
\printbibliography
\end{document}
I hope somebody can help me!
OK. moewe's post was very helpful, but here are some more problems:
- (important) The author name is like: "Firstname Surname". But it should be "Surname, Firstname".
SOLVED:
\AtBeginBibliography{%
\DeclareNameAlias{default}{last-first}%
}
- (less important) How do I get rid of that "URL:" ?
SOLVED:
\DeclareFieldFormat{url}{\space\url{#1}}
- The Edition or in german "Auflage", is shortened to "Aufl." (like Ed. or something). How can I get the full word "Auflage"?
SOLVED:
\DefineBibliographyStrings{ngerman}{%
edition = {Auflage}
}
- (important): After "Auflage" or "Aufl" (or in english Edition) I need a comma.
SOLVED:
\DeclareFieldFormat{edition}{#1\adddot\space\bibstring{edition}\addcomma\space}
- (important): Also I need to change the "besucht am 24.02.2006) to URL, 24.02.2006.
(SOLVED): (better/nicer inputs?)
\DeclareFieldFormat{urldate}{\addcomma\space#1}
thanks,
OK. It looks like I solved those problems by my own, still I don't know if this is the nicest solution. Any suggestions to optimize it?
Where does these commands come in, when I don't want them in my Master.tex? (I mean bibtex.cfg, etc.) At the moment, I have them in a seperate tex file, which I include with \include{bib_mod}
One last question: How can I split up multiple authors in commas and only the last one has a "and" Lastname, Surname, Lastname2, Surname2 and Lastname3, Surname3 [...] For better understanding: If there is only one author, display normally:
Lastname, Surname
If there are two authors, just use a comma no "and":
Lastname, Surname, Lastname2, Surname2
If there are more than three authors, use "and" only at the last position:
Lastname, Surname, Lastname2, Surname2 and Lastname3, Surname3
thanks,

.bstfiles created bycustom-bib(or in any other way, for that matter) inbiblatex;biblatexworks with.bbx,.cbxand.lbxfiles, so you will have to modify these. – moewe Oct 08 '13 at 20:09biblatex.cfgin your working directory they will only influence bibliographies/citations constructed in that directory, which is probably what you want. If you want to intervene in all files you personally build (which is probably not the case, since you are likely to need to use different styles from time to time), you can put them in a 'user-level' location, such as (on GNU/Linux, e.g.)~/texmf/tex/latex/biblatex/. – jon Oct 09 '13 at 14:59\addbibresource{literaturverzeichnis.bib}instead of\bibliography{literaturverzeichnis}(becausebiber+biblatexhave the potential to use other data models now). – jon Oct 09 '13 at 15:01biblatex.cfgas suggested by jon (I also agree that a global redefinition via the sharedbiblatex.cfgis probably not the best option). Your idea of putting the modifications in a separate file and\includingsaid file if needed seems quite smart as well. – moewe Oct 09 '13 at 18:19\inputis better than\include. – moewe Oct 10 '13 at 15:45\renewcommand*{\finalnamedelim}{\ifnumequal{\value{liststop}}{2}{\multinamedelim}{\addspace\bibstring{and}\space}}what you are looking for? – moewe Oct 10 '13 at 16:45