-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
handle bibtex #18
Comments
Thanks for your help. FLaP (in v0.4.1) should already moves around the .bib files referred by the '\bibliography' directive. From the top of my head, the simplest fix would be the modify the extensions that FLaP searches for in bibliography.py (see lines 37-38). These extensions are ordered by priority. Note that the source code has diverged from v0.4.1 as I am working on a new version that is not based on regular expressions anymore, but on a LaTeX parser instead. |
I do not want to move the bib file. If the bib file is already compiled, I want to replace the |
In that case, I think we must create a new substitution for Then, we must include this new substitution in the "substitution pipeline" so at it gets triggered appropriately (see factory.py, line 27). Finally, we must update the command line parsing so at it recognises an option and update the pipeline accordingly (see ui.py line 121). |
Thank you. I will have a look at this over the weekend. |
latexpand has a subcommand to copy the contents of a
.bbl
and replace the corresponding bibtex command in your.tex
file:latexpand --expand-bbl merged.bbl merged.tex
If you point me in the right direction I am happy to help with this.
The text was updated successfully, but these errors were encountered: