{rubber} is a wrapper for compiling LaTeX documents.

learn more… | top users | synonyms

0
votes
0answers
37 views

XeTeX build profile in the gedit latex plugin

In the gedit latex plugin, the build profile to compile latex files to pdf is rubber --inplace --maxerr -1 --short --force --warn all --pdf "$filename" Unfortunately, rubber is a LaTeX building ...
8
votes
3answers
553 views

Using biber with gedit + rubber

I've been having a lot of problems trying to switch to biblatex with biber from bibtex, and after a few problems solved I'm at loss. The situation now: biblatex works when not using biber as a ...
38
votes
3answers
2k views

What are the differences between latexmk and rubber?

I just stumbled on this blog post about rubber and was thinking: "Isn't that exactly what latexmk does?". So, now I wonder: isn't it? Or are there any differences?
7
votes
1answer
879 views

How to fully build with Rubber?

How do I do a full build with rubber that does the equivalent of latex foo bibtex foo makeindex -s myindex.ist foo latex foo latex foo dvips foo ps2pdf foo The files I am using are foo.tex ...
0
votes
0answers
104 views

Why does xfrac lead to IndexErrors in rubber? [closed]

I use rubber to build my documents and rubber-info to find bad boxes and other stuff. However when I compiled a recent document and entered rubber-info --boxes file.tex I got the following error: ...
2
votes
0answers
265 views

Rubber and \include: Missing aux file [closed]

I'm trying to build a multi-file document with Rubber. In thesis.tex, I have: \include{intro} and I have a file intro.tex. It builds fine with pdflatex, but with rubber -d, I am getting the error: ...
2
votes
1answer
1k views

Bad math delimiter in tikz tree

I'm trying to diagram an extensive form game using TikZ trees. The following code generates errors at compile time. Specifically, it complains about missing $'s and a bad math delimiter. I've been ...
11
votes
1answer
530 views

How to use Rubber With Makeglossaries?

Is there a way to use rubber with makeglossaries? I found a solution for the simple case. You have to add the rubber directive to the latex document, in that case myDoc.tex. % rubber: onchange ...
6
votes
2answers
766 views

How to pass options to latex compiler using rubber?

Gedit with latex plugin is a great tool for working with latex. However I need to modify standard tool which is is just a call of rubber. I would like to have possibility to to use inverse search. To ...
4
votes
2answers
544 views

Dependencies in Rubber?

I have several figures compiled independently into several pdf files. Rubber works great in their compilation. The main document is compiling great with rubber as well. How can I add dependency (if ...