I have a biber.conf file with regular expressions for matching and replacing journal names for their abbreviations (following Paul Stanley's advice).
Right now the file is located in my home dir as .biber.conf and so it is always loaded.
I'd like to be able to control the loading of this file in cases where I don't need to use it.
According to the biber manual this should be easy to achieve by renaming the file to say JourAbs.bcf and parsing it to biber like this: biber <options> JourAbs.bcf.
What I can't figure out is how to code this in the preamble.
I tried: \usepackage[style=ISMEJ, natbib=true, backend=biber JourAbs.bcf]{biblatex}, but that doesn't seem to work. I get: ! Package biblatex Error: Option 'backend=biberjourab invalid.
I know there's also the option of using \DeclareSourcemap but that would require generating a whole new file for some 50+ journals with an entirely different syntax. I'd resort to that only if there are some clear advantages to using this method.
(I'm using: kubuntu 12.04; lyx 2.0.4; biblatex 2.2; biber 1.2)
backend=biberin the file and then pass the options tobiberon the command line when you run biber? (Or set up Latexmk or ... your favourite editor to take care of that) – Paul Stanley Oct 19 '12 at 10:10biber.confin the current directory. If you want to use the same file in multiple projects, you could soft link to one central copy. Your suggestion of placing this in a.bcffile seems wrong, that file gets rewritten by the latex runs. Also the biber documentation says that certain commands can only be in thebiber.conffile. – Andrew Swann Oct 19 '12 at 16:37biber.conf– Roey Angel Oct 19 '12 at 19:45backend=biberjust tells biblatex which internal code to use, it has nothing to do with specifying the command-line for biber. If you want to use an alternative config file, you have to run biber with the--configfile|-gflag. – PLK Oct 20 '12 at 20:38