Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-pdflatex

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-pdflatex

Gulp plugin for LaTeX PDF

  • 0.2.0
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gulp-pdflatex

Gulp plugin for LaTeX PDF

Install

npm install gulp-pdflatex

Usage

Basic usage

const pdflatex = require('gulp-pdflatex')

gulp
  .src('document.tex')
  .pipe(pdflatex())
  .pipe(gulp.dest('./build/'))

Options

-shell-escape

You can pass to pdflatex the -shell-escape flag :

const pdflatex = require('gulp-pdflatex')

gulp
  .src('document.tex')
  .pipe(pdflatex({ shellEscape: true }))
  .pipe(gulp.dest('./build/'))
TeX inputs paths

To add paths where LaTeX will search for resources :

const pdflatex = require('gulp-pdflatex')

gulp
  .src('document.tex')
  .pipe(pdflatex({ texInputs: ['../resources/latex', '../exercises/'] }))
  .pipe(gulp.dest('./build/'))

This will add paths to TEXINPUTS env var in pdflatex subprocess.

Keywords

FAQs

Package last updated on 04 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc