Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-11-15 Thread Thibault Marin
Hi, I am trying to get back to the multiple bibliography issue discussed some time ago. I have two patches proposing two slightly different approaches (from earlier suggestions): - 0001-contrib-lisp-ox-bibtex.el-org-bibtex-process-bib-fil.patch creates a new bibliography file, a

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-27 Thread Thibault Marin
Hi, sorry for the delay, I was away for a while. > I'd suggest 2 :) But not that I don't use this feature. > > It should be easy to unify the code: something along the lines of starting > the process, and then looping over bibtex files and sending them one by one > to bibtex2html's standard

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-13 Thread Thibault Marin
Clément Pit--Claudel writes: > On 2016-09-06 23:46, Thibault Marin wrote: I am attaching a patch which allows me to use multiple files with html export. It creates a combined bibliography file and call bibtex2html on it. I am not sure this is the best way to address this, so any

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-10 Thread Clément Pit--Claudel
I'd suggest 2 :) But not that I don't use this feature. It should be easy to unify the code: something along the lines of starting the process, and then looping over bibtex files and sending them one by one to bibtex2html's standard input. Cheers, Clément. On 2016-09-10 02:07, Thibault Marin

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-10 Thread Thibault Marin
Do you mean: 1) Using `call-process' for cases where a single bibliography file is passed and `process-send-string' when multiple files are used? 2) Using `process-send-string' regardless of the number of bibliography files? In this case, can we still unify the code between single and multiple

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-06 Thread Clément Pit--Claudel
On 2016-09-06 23:46, Thibault Marin wrote: >>> I am attaching a patch which allows me to use multiple files with html >>> export. It creates a combined bibliography file and call bibtex2html on >>> it. I am not sure this is the best way to address this, so any >>> suggestion would be welcome.

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-06 Thread Thibault Marin
Nicolas Goaziou writes: > Hello, > > Thibault Marin writes: > >> I would like to use ox-bibtex to export a bibliography to html with >> multiple bibliography files, as follows: >> >> #+BIBLIOGRAPHY: bibtex_1.bib,bibtex_2.bib plain option:-d option:-noabstract >> limit:t

Re: [O] Multiple bibliography files with ox-bibtex and html export

2016-09-06 Thread Nicolas Goaziou
Hello, Thibault Marin writes: > I would like to use ox-bibtex to export a bibliography to html with > multiple bibliography files, as follows: > > #+BIBLIOGRAPHY: bibtex_1.bib,bibtex_2.bib plain option:-d option:-noabstract > limit:t > > This works with latex export but

[O] Multiple bibliography files with ox-bibtex and html export

2016-08-23 Thread Thibault Marin
Hi list, I would like to use ox-bibtex to export a bibliography to html with multiple bibliography files, as follows: #+BIBLIOGRAPHY: bibtex_1.bib,bibtex_2.bib plain option:-d option:-noabstract limit:t This works with latex export but not with html (I get a "Executing bibtex2html failed").