Project

rbtex

0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
The rubylatex gem
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

RbTeX

Presenting...

RbTeX

About this project

I love LaTeX. Seriously, it is the most amazing piece of software to ever be created. But, despite its Turing completeness, it's just not built for dynamic programming. Sure, there's LuaLaTeX, but no one really uses Lua, and the Lua standard libraries are very lacking in power. This project is dedicated to bringing the power of Ruby to LaTeX.

Stipulations

The actually processor, rblatex, only works on UNIX based systems with /usr/bin/env and an up to date Ruby distribution. To run it, simply create a .tex document with some stuff in it, and run rblatex mydoc.tex. Here is a minimal working example:

\documentclass{article}
\usepackage{rubylatex}

\begin{document}
\noindent Here, have some \LaTeX\\
\begin{rbtex}
Tex.print "Here, have some #{Tex.logo}"
\end{rbtex}
\end{document}

If you try to compile this with pdflatex, it will fail spectacularly.

Documentation

The documentation for this project is hosted at this place.