All Projects → YtoTech → latex-on-http

YtoTech / latex-on-http

Licence: AGPL-3.0 license
Compiles Latex documents through an HTTP API

Programming Languages

python
139335 projects - #7 most used programming language
Hy
24 projects
Dockerfile
14818 projects
Makefile
30231 projects

LaTeX-On-HTTP

Compiles LaTeX documents through an HTTP API.

See TUG2020 introduction to LaTeX-on-HTTP genesis.

Open Alpha @ latex.ytotech.com

Available on https://latex.ytotech.com as an open-alpha.

This alpha is open to everyone to test the API, collect as much feedbacks as possible and help develop the service. Feedbacks welcome! Mail me at [email protected]

Try the interactive demo: https://latex-http-demo.ytotech.com

Notice

As noted above, the API is likely to change along the way. There will be no special notice before changes are rolled out until the API is stabilized.

Getting started

Hello world GET Querystring API (experimental)

You can pass your LaTeX document to compile in a content GET parameter:

https://latex.ytotech.com/builds/sync?content=\documentclass{article} \begin{document} Hello World LaTeX-On-HTTP \end{document}

You can also pass your document by url using url parameter:

https://latex.ytotech.com/builds/sync?url=https://raw.githubusercontent.com/YtoTech/latex-on-http/master/examples/templates/moderncv.tex

It is possible to specify the LaTeX compiler with compiler parameter:

https://latex.ytotech.com/builds/sync?compiler=xelatex&url=https://raw.githubusercontent.com/YtoTech/latex-on-http/master/examples/gitlab_ci/Dossier_Eleve.tex

When you need to add annex resources (for eg. other LaTeX files or image files), you can specify them using resource-path[], resource-value[] and resource-type[] parameters:

https://latex.ytotech.com/builds/sync?content=content=\documentclass{article} \usepackage{graphicx} \begin{document} Hello World \includegraphics[height%3D2cm%2Cwidth%3D7cm%2Ckeepaspectratio%3Dtrue]{logo.png} \end{document}&resource-type[]=url&resource-path[]=logo.png&resource-value[]=https://www.ytotech.com/images/ytotech_logo.png

Hello world POST Json API

With Curl:

curl -v -X POST https://latex.ytotech.com/builds/sync \
    -H "Content-Type:application/json" \
    -d '{
        "compiler": "lualatex",
        "resources": [
            {
                "main": true,
                "content": "\\documentclass{article}\n \\usepackage{graphicx}\n  \\begin{document}\n Hello World\\\\\n \\includegraphics[height=2cm,width=7cm,keepaspectratio=true]{logo.png}\n \\include{page2}\n \\end{document}"
            },
            {
                "path": "logo.png",
                "url": "https://www.ytotech.com/images/ytotech_logo.png"
            },
            {
                "path": "page2.tex",
                "file": "VGhpcyBpcyB0aGUgc2Vjb25kIHBhZ2UsIHdoaWNoIHdhcyBwYXNzZWQgYXMgYSBiYXNlNjQgZW5jb2RlZCBmaWxl"
            }
        ]
    }' \
    > hello_world.pdf

In this example the main document is passed as a plain-string (Json-encoded content resource mode), the logo image file with an url (url resource mode) and the second LaTeX file as a base64 encoded string (file resource mode, which expects the file content as base64).

Also note how the first document is flag with the main property and how the dependencies relative paths are specified to reconstruct the file arborescence server-side for the compilation with multiple files to work.

Hello world Multipart API

With HTTPie:

http --download -f -v POST https://latex.ytotech.com/builds/sync \
    [email protected] \
    compiler=xelatex \
    resources='[{"main": "true", "multipart": "file1"}]'

This multi-part API allows to send resource files to be compiled in a multipart HTTP query.

Available packages and fonts

Use https://latex.ytotech.com/packages and https://latex.ytotech.com/fonts to see currently available packages and fonts.

You miss something? Open a PR for adding font(s) or Latex/CTAN packages!

Using CLI

lol

kpym has created a CLI tool named lol for using LaTeX-on-HTTP:

lol -s ytotech -c xelatex main.tex imgs/*.png

Installing lol

To install it, download the latest release for your platform and add it to your PATH.

For eg. on most Linux distributions this should work (considering $HOME/.local/bin is in your PATH):

wget https://github.com/kpym/lol/releases/download/v0.1.3/lol_0.1.3_Linux_64bit.tar.gz
tar -xf lol_0.1.3_Linux_64bit.tar.gz
chmod +x ./lol
mv ./lol ~/.local/bin
lol -h

API

This project is in an experimental phase and the API is very likely to change.

Compiling LaTeX

POST:/builds/sync

Compile a LaTeX document, waiting for the end of the build to get back the file.

Request

POST:/builds/sync

Payload (json)

{
    "compiler": "lualatex",
    "resources": [
        {
            "main": true,
            "content": "\\documentclass{article}\n \\usepackage{graphicx}\n  \\begin{document}\n Hello World\\\\\n \\includegraphics[height=2cm,width=7cm,keepaspectratio=true]{logo.png}\n \\include{page2}\n \\end{document}"
        },
        {
            "path": "logo.png",
            "url": "https://www.ytotech.com/images/ytotech_logo.png"
        },
        {
            "path": "page2.tex",
            "file": "VGhpcyBpcyB0aGUgc2Vjb25kIHBhZ2UsIHdoaWNoIHdhcyBwYXNzZWQgYXMgYSBiYXNlNjQgZW5jb2RlZCBmaWxl"
        }
    ]
}
  • compiler defaults to pdflatex. Available compilers: pdflatex, xelatex, lualatex, platex, uplatex and context.
  • resources entries:
    • These are the files uploaded and to be compiled;
    • There must be an entry for the main LaTeX document, tagged with the main: true value; if there is only one entry, it is considered the main document;
    • Resource entries that are not the main document must be specified a path, relative to main document; these files can then been referred in the LaTeX sources;
    • There are several resource content formats:
      • String format, with content (value must be encoded as a valid Json string);
      • Inline file format, with file (value must be base64 encoded)
      • URL to a file, with url (the resource pointed by the URL will be downloaded and decoded with UTF-8).
  • options properties:
    • options.bibliography.command defaults to bibtex. Available bibliography commands: bibtex and biber.

Response

A PDF file if the compilation succeeds, else a Json payload with the error logs.

Inspecting build environment (texlive, fonts, packages)

GET:/texlive/information

See information on TeXLive installation used in LaTeX compilations.

Request

GET:/texlive/information

Response

A Json payload with a TeXLive installation specification.

Sample

{
  "texlive": {
    "installation_path": "/usr/local/texlive", 
    "modules": [
      {
        "name": "TLConfig", 
        "value": "52745"
      }, 
      ["..."]
    ], 
    "version": "2019"
  }, 
  "tlmgr": {
    "revision": "52931", 
    "revision_date": "2019-11-27 00:04:18 +0100"
  }
}

GET:/fonts

Explore available fonts that can be used directly in LaTeX compilations.

Request

GET:/fonts

Response

A Json payload with a list of fonts.

Sample

{
  "fonts": [
    {
      "family": "Courier New",
      "name": "Courier New",
      "styles": [
        "Regular"
      ]
    },
    ["..."]
}

GET:/packages

Explore installed LaTeX packages that can be used in compilations.

Request

GET:/packages

Response

A Json payload with a list of packages.

Sample

{
  "packages": [
    {
      "installed": true, 
      "name": "12many", 
      "shortdesc": "Generalising mathematical index sets", 
      "url_ctan": "https://ctan.org/pkg/12many", 
      "url_info": "/packages/12many"
    }, 
    ["..."]
}

GET:/packages/<packgeName>

Get information on a LaTeX package, including whether it is installed or not.

Request

GET:/packages/<packageName>

Response

A Json payload with information on the package.

Sample for /packages/12many

{
  "package": {
    "cat-date": [
      "2016-06-24T19:18:15+02:00"
    ],
    "cat-license": "lppl",
    "cat-topics": [
      "maths"
    ],
    "cat-version": "0.3",
    "category": "Package",
    "collection": "collection-mathscience",
    "installed": true,
    "longdesc": "In the discrete branches of mathematics and the computer sciences, it will only take some seconds before you're faced with a set like {1,...,m}. Some people write $1\\ldotp\\ldotp m$, others $\\{j:1\\leq j\\leq m\\}$, and the journal you're submitting to might want something else entirely. The 12many package provides an interface that makes changing from one to another a one-line change.",
    "package": "12many",
    "relocatable": false,
    "revision": "15878",
    "shortdesc": "Generalising mathematical index sets",
    "sizes": {
      "run": "5k"
    },
    "url_ctan": "https://ctan.org/pkg/12many"
  }
}

Docker

Images

Prebuilt Docker images exist to run the service on your own:

Run the service

You can use the default docker-compose.yml:

docker-compose up

The service will be available on http://localhost:2345.


Credits

Inspired by:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].