up vote 1 down vote favorite
2
share [g+] share [fb]

Which packages do you find essential in your LaTeX environment for text typesetting?

I start with: graphicx and fancyhdr.

Edited: changed to community wiki.

link|improve this question
1  
This is not a question that has a clear answer. Voting to close as “subjective and argumentative”. – Bombe Sep 18 '09 at 9:14
1  
Also neither programming related nor an actual LaTeX problem to solve. If at all, then this should be at Super User. – Joey Sep 18 '09 at 9:16
2  
This is not 'argumentative', although it might be characterised as 'subjective'. It's not really appropriate to close it as such (unless it's a duplicate) but it should be a wiki. – ConcernedOfTunbridgeWells Sep 18 '09 at 9:38
2  
The close brigade did it again. – João Sep 18 '09 at 10:43
I imagine I am pretty well known as a defender of LaTeX 'round here ( meta.stackoverflow.com/questions/12918/… ), but I won't be voting to open this. "Best of", "Favorite", "Essential", and "Secret features" questions bother the heck out of me even on those rare occasions that I find something useful in them: they are just a dodge to try to have a discussion. – dmckee Sep 18 '09 at 21:43
feedback

closed as not constructive by Bombe, dreamlax, Joey, 0xA3, Richard Sep 18 '09 at 9:45

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

3 Answers

\usepackage{hyperref} %This is for clickable URLs.

\usepackage{multirow} %This is for making prettier tables and splitting columns and rows.

\usepackage{supertabular} %This is for making tables that extend over multiple pages

\usepackage{alltt} %This is for listing verbatim text but with Latex commands

\usepackage{listings} %This is for listing source code

\usepackage{parskip} %This is for killing indents on paragraphs and putting a blank line between them.

\usepackage{tocbibind} %This is for including the bibliography in the table of contents.

\usepackage{appendix} %This gives more control over the appendix and how it appears in the table of contents.

\usepackage{tabularx} %This is to make stretchy columns in tables

\usepackage[fleqn]{amsmath} %AMS packages give more control over positioning and format of equations

\usepackage{amssymb}

\usepackage{amsthm}

\usepackage[square]{natbib} %! needed for Harvard style of references.

link|improve this answer
feedback

The algorithmicx package, for pseudo-code.

link|improve this answer
feedback

color and pstricks are ones I use very frequently. multicol, graphicx, soul, fancyvrb, and fancyhdr are quite useful as well.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.