Skip to content

Document Processing

Convert PDF to TIFF

Convert pdf files to tiff images with pdftoppm or ghostscript.

pdftoppm

Install pdftoppm

To install pdftoppm (included in poppler-utils)123

Ubuntu

sudo apt install poppler-utils

conda

Available in both Windows and Linux.

conda install -c conda-forge poppler

Usage

See documentation of pdftoppm.

For example, to convert the pdf file to a 300-DPI TIFF image with LZW compression.

pdftoppm -tiff -tiffcompression lzw -r 300 in.pdf out.tif

ImageMagick

Install

Ubuntu

sudo apt install imagemagick

Windows

choco install -y imagemagick

Usage

How to convert a pdf file to a tiff file:

magick "image.pdf" -density 300 \
        -compress lzw \
        -background white \
        -alpha remove \
        -trim \
        "image_%d.tiff"

Markdown Bookmarks

Markdown flavors

(Local) Markdown Editors

Online Markdown Editors

Markdown formatters and linters

Research Bookmarks

Reference managers

  • SciWheel: the online reference manager with browser, Google Doc, and MS Word plugins.
  • Zotero: an open-source reference manager.

Find Publications

Data source

General datasets

Biology

Systems biology models

Pharmacology database

LaTeX Bookmarks

LaTeX Distributions

  • TexLive : de-facto standard TeX distribution.
  • MiKTeX : A just enough TeX distribution.
  • TinyTeX : for R markdown publication.
  • Tectonic : A modernized, complete, self-contained TeX/LaTeX engine.

TeX Editors

  • Overleaf : An online LaTeX project and document manager.
  • LaTeX workshop for VS code
  • TexLab for VS Code : rich editing support for the LaTeX typesetting system powered by the TexLab language server
  • Lyx : A What You See Is What You Mean document processor.
  • TEXMAKER : A free cross-platform LaTeX editor.
  • SwiftLaTeX : SwiftLaTeX is a WYSIWYG Browser-based LaTeX Editor, based on the [Tectonic][] engine.
  • TexWorks : Lowering the entry barrier to the TeX world.

LaTeX Online Tools

CI/CD for building LaTeX documents

GitHub actions for automatically compile LaTeX documents on pushing changes.