Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Latest commit

 

History

History
44 lines (30 loc) · 1.68 KB

README.md

File metadata and controls

44 lines (30 loc) · 1.68 KB

Warning: This package is deprecated & archived. The PDF/LaTeX backend is (again) a core Documenter.jl feature.

DocumenterLaTeX

Build Status

This package enables the LaTeX / PDF backend of Documenter.jl.

Installation

The package can be added using the Julia package manager. From the Julia REPL, type ] to enter the Pkg REPL mode and run

pkg> add DocumenterLaTeX

Usage

To enable the backend import the package in make.jl and then just pass format = DocumenterLaTeX.LaTeX() to makedocs:

using Documenter
using DocumenterLaTeX
makedocs(format = DocumenterLaTeX.LaTeX(), ...)