Minimal LaTeX Packages

Author:

From: CTAN.org

(image from: CTAN.org)

Dear friends,

I’ve been using LaTeX (with TeX Studio) for about two years now. I use it mostly for long-formatted document. And by long, I mean more than five pages with several headings and subheadings. More light editing or letter, I use LibreOffice. As a typesetter (not a word processor), most begineer will bump into what package to use, or not to use, or a case of redundant packages.

So here I share what minimal packages that I used daily:

documentclass[a4paper]{scrartcl}
usepackage[ascii]{inputenc} % keyboard encoding tool
usepackage[T1]{fontenc} % keyboard encoding tool
usepackage[english]{babel} % language setting tool
usepackage{amsmath,amssymb,amsfonts,textcomp} % math font type tools
usepackage{color} % font color tool
usepackage{array,hhline} % tabular tool
usepackage{hyperref} % hyperlink tool
usepackage{graphicx} % figure insertion tool
usepackage[authoryear]{natbib} % bibliography tool

One can always search for another similar packages, other than the ones that listed above, but bare in mind that there are probably thousands of packages. So you might want to do a little research on a package before decide to use it.

Other applications a used in my writing are:

  • Zotero as reference manager. We have to convert the database to bibtex format, but it has an extension to work with LibreOffice or Microsoft Office.
  • Evernote as web clipper
  • MoU (on Mac) or Re-Text (on Ubuntu) for Markdown editor

Try LaTeX and leave “point and click” for a while. You might like it.