1.0.1 • Published 9 years ago

gulp-latex v1.0.1

Weekly downloads
10
License
MIT
Repository
github
Last release
9 years ago

gulp-latex Build Status npm version Dependency Status

A gulp plugin for rendering LaTeX files

Introduction

This gulp plugin receives .tex files and renders them to .pdf or .dvi files. There's not much more to it than that. It's no more than a wrapper around the latex module, which itself is little more than a wrapper around latex. All options are just passed directly to the latex module.

Sample usage:

var latex = require('gulp-latex')

gulp.task('latex',function() {
  return gulp.src('*.tex')
    .pipe( latex() )
    .pipe( gulp.dest('./') )
})

Installation

As per the latex module instructions, you'll need texlive installed. To install the node module:

$ npm install gulp-latex

API

require('gulp-latex')( options )

Creates a gulp-compatible object transform stream that inputs and outputs vinyl file objects. Both streamed and buffered I/O is accepted.

  • options
    • format: either 'pdf' or 'dvi. By default outputs a pdf.
    • command: the latex command invoked. Default: latex

Testing

Tests are performed using latex/pdflatex stubs in test/stubs. To use your default latex installation, set:

$ export LATEX=latex
$ export PDFLATEX=pdflatex

or whichever commands with which you prefer to invoke latex/pdflatex.

Credits

(c) 2015 Ricky Reusser. MIT License

1.0.1

9 years ago

1.0.0

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago