To add to the existing answers. For bibtex-2.16 a minimal configuration:
<?xml version="1.0" encoding="utf-8"?>
<!-- Got the date from https://gist.githubusercontent.com/mkouhia/f00fea7fc8d4effd9dfd/raw/500e9dbc6aa43a47e39c45ba230738ff4544709f/biblatex-to-bibtex.conf -->
<config>
<output_fieldcase>lower</output_fieldcase>
<output_resolve>1</output_resolve>
<output_safechars>1</output_safechars>
<output_format>bibtex</output_format>
<sourcemap>
<maps datatype="bibtex">
<!-- Easy type conversions -->
<map>
<map_step map_type_source="report" map_type_target="techreport"/>
<map_step map_type_source="online" map_type_target="misc"/>
</map>
<!-- Date to year, month -->
<map>
<map_step map_field_source="date"
map_field_target="year" />
</map>
<map>
<map_step map_field_source="year"
map_match="(\d{4}|\d{2})-(\d{1,2})-(\d{1,2})"
map_final="1" />
<map_step map_field_source="year"
map_match="(\d{4}|\d{2})-(\d{1,2})-(\d{1,2})"
map_replace="$1" />
<map_step map_field_set="month" map_origfieldval="1" />
<map_step map_field_source="month"
map_match="(\d{4}|\d{2})-(\d{1,2})-(\d{1,2})"
map_replace="$2" />
</map>
<map>
<map_step map_field_source="year"
map_match="(\d{4}|\d{2})-(\d{1,2})" map_final="1" />
<map_step map_field_source="year"
map_match="(\d{4}|\d{2})-(\d{1,2})" map_replace="$1" />
<map_step map_field_set="month" map_origfieldval="1" />
<map_step map_field_source="month"
map_match="(\d{4}|\d{2})-(\d{1,2})" map_replace="$2" />
</map>
</maps>
</sourcemap>
</config>
Coupled with a few command line options:
biber --tool --configfile=biberConf.xml references.bib --output-file refsTmp.bib --output-legacy-date --output-field-replace=location:address,journaltitle:journal
Is sufficient. More details are here. Note that sufficiency in this case is defined as being recognized as valid bibtex by sphinx, and this should not be used without more work for other cases (like journal templates).
biber->bibtexcompatibility: Converting from biblatex to BibTeX format using biber – ebosi Mar 11 '16 at 08:29.bststyle you use withnatbib, some styles support an URL field, some don't. So it can get arbitrarily messy. – moewe Mar 11 '16 at 09:39authoryearanswering your question? (The class I have to use includes this line:\RequirePackage[authoryear]{natbib}). Within thetexdocument, the bibliography is called as following:\begin{thebibliography}{9}. – ebosi Mar 11 '16 at 09:47datefield that.bststyles probably wont understand toyearandmonth. Biblatex: How to convert date field into year and month field?. I can also imagine Biber putting theurlandurldatefield together in thenotefield if that be necessary. – moewe Mar 11 '16 at 09:58.bibfile, what do I do now ?". I'll try to write an answer, but need to understand linked threads first (-; – ebosi Mar 16 '16 at 12:37date) but not by BibTeX. – Mico Mar 16 '16 at 14:46natbibis load with theauthoryearoption. Is it an answer to your question? (The LaTeX template of the journal is to find here) Regarding incompatible fields/types, I useinbook,urldate,crossref, some alias (e.g.phdthesis) etc. but no exotic customx-datatypes. – ebosi Mar 16 '16 at 14:52