Suvayu Ali <fatkasuvayu+li...@gmail.com> writes: [...]
> > Does that say anything to you? How do I capture the output from bibtex? > I presumed it is being overwritten by subsequent pdflatex runs. So I > removed the later pdflatex runs from the variable and that gives me > this output in the "*Org PDF LaTeX Output*" buffer. [...] You could try creating a shell script (such as attached) which invokes both pdflatex and bibtex and tell org to use that command for exporting to pdf instead. Then all the output should come out to the screen. I've tried this and all the output (3 pdflatex and 1 bibtex invocations) comes out into the =*Org PDF Latex Output*= buffer.
#!/bin/sh -f # first argument should be base latex file name F=$1 echo 'Using ' $F echo '--------------------------------- running pdflatex first' pdflatex $F echo '--------------------------------- running bibtex next' bibtex $F echo '--------------------------------- running pdflatex again (and again)' pdflatex $F pdflatex $F
-- : Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.50.1 : using Org-mode version 7.4 (release_7.4.529.gb23d.dirty)
_______________________________________________ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode