All Projects → thomasWeise → Docker Texlive

thomasWeise / Docker Texlive

Licence: gpl-3.0
A docker container containing an installation of texlive as well as several useful scripts.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to Docker Texlive

Stories About Ming Dynasty
明朝那些事儿(全七卷)
Stars: ✭ 52 (+0%)
Mutual labels:  latex, pdf, font
Crowbook
Converts books written in Markdown to HTML, LaTeX/PDF and EPUB
Stars: ✭ 399 (+667.31%)
Mutual labels:  latex, pdf
Latex Online
Online latex compiler. You give it a link, it gives you PDF
Stars: ✭ 381 (+632.69%)
Mutual labels:  latex, pdf
Bibsearch
Download, manage, and search a BibTeX database.
Stars: ✭ 52 (+0%)
Mutual labels:  bibtex, latex
Jupyterlab Latex
JupyterLab extension for live editing of LaTeX documents
Stars: ✭ 349 (+571.15%)
Mutual labels:  latex, pdf
Letter Boilerplate
Finest letter typesetting from the command line
Stars: ✭ 374 (+619.23%)
Mutual labels:  latex, pdf
Resume
👾 My resume / 我的简历
Stars: ✭ 482 (+826.92%)
Mutual labels:  latex, pdf
nom-bibtex
A feature complete bibtex parser using nom
Stars: ✭ 13 (-75%)
Mutual labels:  latex, bibtex
Ultimate Beamer Theme List
A collection of custom Beamer themes
Stars: ✭ 652 (+1153.85%)
Mutual labels:  latex, pdf
Satysfi
A statically-typed, functional typesetting system
Stars: ✭ 815 (+1467.31%)
Mutual labels:  latex, pdf
Readteractive
Tool for writing and generating interactive books.
Stars: ✭ 23 (-55.77%)
Mutual labels:  latex, pdf
Latexdraw
A vector drawing editor for LaTeX (JavaFX).
Stars: ✭ 336 (+546.15%)
Mutual labels:  latex, pdf
Pandoc Latex Template
A pandoc LaTeX template to convert markdown files to PDF or LaTeX.
Stars: ✭ 3,750 (+7111.54%)
Mutual labels:  latex, pdf
Betterbib
Update BibTeX files with info from online resources.
Stars: ✭ 380 (+630.77%)
Mutual labels:  bibtex, latex
bibtex-js
Library for parsing .bib files, used in Bibliography.js 📚
Stars: ✭ 55 (+5.77%)
Mutual labels:  latex, bibtex
Fiduswriter
Fidus Writer is an online collaborative editor for academics.
Stars: ✭ 405 (+678.85%)
Mutual labels:  bibtex, latex
ads2bibdesk
ads2bibdesk helps you add astrophysics articles listed on NASA/ADS to your BibDesk database using the new ADS Developer API
Stars: ✭ 32 (-38.46%)
Mutual labels:  latex, bibtex
snipmate-snippets-bib
Snipmate.vim support for BibTeX files
Stars: ✭ 13 (-75%)
Mutual labels:  latex, bibtex
Invoice Boilerplate
Simple automated LaTeX invoicing system
Stars: ✭ 604 (+1061.54%)
Mutual labels:  latex, pdf
Cv Boilerplate
Programmatic generation of high-quality CVs
Stars: ✭ 967 (+1759.62%)
Mutual labels:  latex, pdf

thomasWeise/texlive

Image Layers and Size Docker Pulls Docker Stars

This is a major overhaul of the thomasWeise/texlive image. It is now based thomasweise/docker-pandoc, which, in turn, is based on thomasweise/docker-texlive-full. This means it got bigger, but it now features the newest release of pandoc, TeX Live, and includes more pandoc filters than before. For the original version of the container, refer to tag 1.0.0.

This is a Docker image containing a TeX Live installation (version 2015.2016) with several support scripts for easing the compilation of LaTeX files to PDF. The goal is to provide a unified environment for compiling LaTeX documents with predictable and reproducible behavior, while decreasing the effort needed to install and maintain the LaTeX installation. This image is designed to be especially suitable for a Chinese audience and comes with several pre-installed open Chinese fonts.

0. Installing Docker

Docker can be installed following the guidelines below:

  • for Linux, you can run curl -fsSL http://get.docker.com/ | sh on your command line and everything is done automatically (if you have curl installed, which is normally the case),
  • for Windows
  • for Mac OS

1. Usage

Below, we discuss the various parameters that you can pass to this image when running it. If you have installed Docker, you do not need to perform any additional installations: The first time you do docker run -t -i thomasweise/texlive or something like that (see below), the image will automatically be downloaded and installed from docker hub.

There are two basic use cases of this image:

  1. Execution of a single command or script
  2. Providing a shell where you can use all the standard LaTeX commands and our helper scripts

Additionally, there are two ways to provide data to the container:

  1. Mounting the folder where the LaTeX document you want to compile is located: This step is necessary..
  2. Mounting a folder with additional fonts needed for compiling your document: This is optional.

The common form of the command is as follows:

docker run -v /my/path/to/document/:/doc/ -v /path/to/fonts/:/usr/share/fonts/external/ -t -i thomasweise/texlive COMMAND ARG1 ARG2...

Where

  • /my/path/to/document/ must be replaced with the path to the folder containing the LaTeX document that you want to compile. This folder will be made available as folder /doc/ inside the container. If you use the image without command parameters (see below), you will get a bash command prompt inside this /doc/ folder.
  • Sometimes you may need additional fonts to compile your LaTeX document. An example for this situation is if you use something like the USTC thesis template, which needs fonts such as SimHei from Windows, which are not available under Linux. In this case, you can use the optional -v /path/to/fonts/:/usr/share/fonts/external/ parameter. Here, /path/to/fonts/ must be replaced with a path to a folder containing these fonts. If you do not need additional fonts, you can leave the whole -v /path/to/fonts/:/usr/share/fonts/external/ away.
  • Optinally you can also provide a single command that should be executed when the container starts (along with its arguments). This is what the COMMAND ARG1 ARG2... in the above command line stand for. If you specify such a command, the container will start up, execute the command, and then shut down. If you do not provide such a command, the container will start up and provide you a bash prompt in folder /doc/.

For compiling some document named myDocument.tex in folder /my/path/to/document/ with xelatex.sh and using additional fonts in folder /path/to/fonts/, you would type something like the command below into a normal terminal (Linux), the Docker Quickstart Terminal (Mac OS), or the Docker Toolbox Terminal (Windows):

docker run -v /my/path/to/document/:/doc/ -v /path/to/fonts/:/usr/share/fonts/external/ -t -i thomasweise/texlive
xelatex.sh myDocument
exit

Alternatively, you could also do

docker run -v /my/path/to/document/:/doc/ -v /path/to/fonts/:/usr/share/fonts/external/ -t -i thomasweise/texlive xelatex.sh myDocument

The first version starts the container and leaves you at the command prompt. You can now compile your document using our xelatex.sh helper script, then you exit the container. In the second version, you directly provide the command to the container. The container executes it and then directly exits.

Both should leave the compiled PDF file in folder /my/path/to/document/. If you are not using my pre-defined scripts for building (see below under point 3.1), I recommend doing chmod 777 myDocument.pdf after the compilation, to ensure that the produced document can be accessed inside your real (host) system's user, and not just from the Docker container. If you directly provide a single command for execution, the container attempts to heuristically find your produced pdf and to set its permissions correctly.

The -v sourcepath:destpath options are optional. They allow you to "mount" a folder (sourcepath) from your local system into the Docker container, where it becomes available as path destpath. We can use this method to allow the LaTeX compiler running inside the container to work on your LaTeX documents by mounting their folder into a folder named /doc/, for instance. But we can also mount an external folder with fonts into the Linux font directory structure. For this purpose, please always mount your local font directory into /usr/share/fonts/external/.

If you just want to use (or snoop around in) the image without mounting external folders, you can run this image by using:

docker run -t -i thomasweise/texlive

Another example for the use of the syntax for directly passing in a single command for execution is compiling a thesis based on the USTC thesis template. Such documents can be compiled using make, so you could do something like

docker run -v /path/to/my/thesis/:/doc/ -v /path/to/fonts/:/usr/share/fonts/external/ -t -i thomasweise/texlive make

2. Building and Components

The image has the following components:

You can build it with

docker build -t thomasweise/texlive .

3. Scripts

We provide a set of scripts (in /bin/) that can be used for compiling LaTeX documents:

3.1. Compiler Scripts

Usually, LaTeX compilation means to call the LaTeX compiler program, then BibTeX, then the compiler again, and then some conversion program from the respective compiler output format to PDF. With the compiler scripts, we try to condense these calls into a single program invocation.

  • latex.sh <document> compile the LaTeX <document> with LaTeX (also do BibTeX)
  • lualatex.sh <document> compile the LaTeX <document> with LuaLaTeX (also do BibTeX)
  • pdflatex.sh <document> compile the LaTeX <document> with PdfLaTeX (also do BibTeX)
  • xelatex.sh <document> compile the LaTeX <document> with XeLaTeX (also do BibTeX)
  • mintex.sh <document> <compiler1> <compiler2> ... allows you to invoke an arbitrary selection of the above compiler scripts to produce the smallest pdf. Doing mintex.sh mydoc latex lualatex xelatex, for instance, will compile mydoc.tex with latex.sh, lualatex.sh, and xelatex.sh and keep the smallest resulting pdf file.

3.2. Utility Scripts

We also provide some utility scripts for working with PDF, PS, and EPS files.

  • eps2pdf.sh <document> convert the EPS file <document> to PDF
  • filterPdf.sh <document> transform a document (either in PostScript/PS, EPS, or PDF format) to PDF and include as many of the fonts used inside the document into the final PDF. This allows to produce a PDF from a .ps file <document> which should display correctly on as many computers as possible.
  • sudo is a pseudo-sudo command: Inside a Docker container, we don't need sudo. However, if you have a script or something that calls plain sudo (without additional arguments) just with a to-be-sudoed command, this script will emulate a sudo. By doing nothing.
  • downscalePdf.sh <document> {resolution} makes a pdf document smaller by downscaling all included images (to the specified resolution).
  • findNonASCIIChars.sh <document> finds non-ASCII characters in a document. In .tex documents, such characters may pose problems.

4. License

This image is licensed under the GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007, which you can find in file LICENSE.md. The license applies to the way the image is built, while the software components inside the image are under the respective licenses chosen by their respective copyright holders.

5. Contact

If you have any questions or suggestions, please contact Thomas Weise of the Institute of Applied Optimization of Hefei University in Hefei, Anhui, China.

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].