Hot answers tagged bibtex
5
For a one-off document where there is only one (or very few) entries that require special sorting treatment, it is not unreasonable to create a 'special' entry and use that entry instead.
\documentclass[12pt]{article}
\usepackage{natbib}
\newcommand{\noop}[1]{}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Article{adams1986,
author = ...
2
The url package provides an interesting extra piece of flexibility, via the construct \Urlmuskip. This specifies the spacing around the breakable characters. By default it is 0mu however you can set it some glue specification:
\Urlmuskip=0mu plus 1mu
(Unfortunately the example in the url manual is wrong. It says \Urlmuskip=0pt plus 1mu. Being a ...
2
You can try the option --nostdmacros on an earlier run to stop biber defining these macros internally in first place? If this doesn't work, I will address this in the biber dev version as this biblatex -> bibtex conversion is quite important.
There is a new option in 1.7 (currently in dev folder on SourceForge) called --tool_macro_fields which can be set to ...
2
To answer your question on how to keep code in a bbl file: you don't. It's a temporary file used to generate the bibliography from. If you need to put code in that file, your solution isn't a solution.
Regarding your problem: See the answer on this question
1
You can set the name of the bibliography by using \renewcommand{\bibname}{Bibliografie}.
Just please bear in mind that if you are using hyperref, you should also include:
\newpage{\pagestyle{empty}\cleardoublepage}
\renewcommand{\bibname}{Bibliografie}
\phantomsection
\addcontentsline{toc}{chapter}{Bibliografie}
\bibliographystyle{agsm}
...
1
The only thing you need, is to use \markboth{}{Bibliografie} for this. But you have to put it in the right place, and the right order of commands is:
\addcontentsline{toc}{chapter}{Bibliografie}
\bibliographystyle{agsm}%plainnat
\bibliography{bronnen}
\markboth{Bibliografie}{}
Or if you really insist, then you place the three last lines in your file ...
1
Based on our discussion in the comments, you created a new .bst file using the custom-bib package. This .bst file then needs to be modified to be used with the jabbrv package.
It seems that the .bib files created by custom-bib package are a bit more sophisticated than the basic .bst files assumed by the package, and the modification suggested in the ...
Only top voted, non community-wiki answers of a minimum length are eligible