- Dataninja’s collection of LaTeX links –
http://dataninja.wordpress.com/category/latex/
- LaTeX (WikiBooks) –
http://en.wikibooks.org/wiki/LaTeX
:- LaTeX/Useful Measurement Macros (Wikibooks) –
http://en.wikibooks.org/wiki/LaTeX/Useful_Measurement_Macros
- LaTeX/Useful Measurement Macros (Wikibooks) –
- TeX (WikiPedia) –
http://en.wikipedia.org/wiki/TeX
- LaTeX (WikiPedia) –
http://en.wikipedia.org/wiki/LaTeX
- TeXblog by Stefan Kottwitz –
http://texblog.net/
- TeX & Friends (blog) –
http://texandfriends.wordpress.com/
[in German] - Some TeX Developments (blog) –
http://www.texdev.net/
- comp.text.tex Usenet group at Google groups –
http://groups.google.com/group/comp.text.tex/topics
- Getting to Grips with Latex – Tables –
http://www.andy-roberts.net/misc/latex/latextutorial4.html
- The UK TeX Archive –
http://www.tex.ac.uk/>
. Contains many useful documents, including:- UK List of TeX FAQs on the Web –
http://www.tex.ac.uk/cgi-bin/texfaq2html
- TeX Catalogue (Preface CTAN Edition) Graham Williams –
http://www.tex.ac.uk/tex-archive/help/Catalogue/catalogue.html
- UK List of TeX FAQs on the Web –
- TeX Users Group –
http://www.tug.org/
- Comprehensive TeX Archive Network (CTAN) – Search :
http://www.tug.org/ctan.html
; root directory –
http://www.tex.ac.uk/tex-archive//li>
- Comprehensive TeX Archive Network (CTAN) – Search :
- UK-TUG –
http://uk.tug.org/
- LaTex Community –
http://latex-community.org/
- Go LaTeX –
http://www.golatex.de/
[in German] - LaTeX Project pages –
http://www.latex-project.org/
- LaTeX to WordPress –
http://lucatrevisan.wordpress.com/latex-to-wordpress/
- LaTeX Cookbook –
http://www.personal.ceu.hu/tex/cookbook.html
- LaTeX:Commands –
http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:Commands
- LaTeX matters (blog) –
http://texblog.wordpress.com/
- LaTeX for Humans (blog) –
http://latexforhumans.wordpress.com/
- The Latex Array Command –
http://www.seanet.com/~bradbell/omhelp/array.htm
- Matrices and other arrays in LaTeX –
http://www.maths.tcd.ie/~dwilkins/LaTeXPrimer/Matrices.html
- REVTeX 4 home page –
https://authors.aps.org/revtex4/
- Making Your Own Lists in LaTeX and Ly –
http://www.troubleshooters.com/linux/lyx/ownlists.htm
- “An extension to amsmath matrix environments” by Stefan Kottwitz (TeXblog; 2008.09.30) –
http://texblog.net/latex-archive/maths/amsmath-matrix/
- “How to create a matrix in LaTeX” (SELINAP.COM; 2009.05.18) –
http://selinap.com/2009/05/how-to-create-a-matrix-in-latex/
- “How to add a matrix in a LaTeX document?” –
http://stackoverflow.com/questions/14132/latex-how-to-add-a-matrix-in-a-latex-document
- TeXample.net –
http://www.texample.net/
- LaTeX symbols:
- “The Great, Big List of LaTeX Symbols” –
http://www.rpi.edu/dept/arc/training/latex/LaTeX_symbols.pdf
- “The Comprehensive LaTeX Symbol List” –
http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-a4.pdf
- “Astronomy Symbols in TeX” (at Jack Valmadre’s Blog) –
http://jackvalmadre.wordpress.com/2008/09/09/astronomy-symbols-in-tex/
- “The Great, Big List of LaTeX Symbols” –
Tools
- Texmaker – free cross-platform LaTeX editor –
http://www.xm1math.net/texmaker/index.html
(to be a) Cheatsheet
Lists
\begin{list}{label code}{body code}
\item Item one
\item Item two
\item Item three
\end{list}
|
Example:
\begin{list}{*}{}
\item Item one
\item Item two
\item Item three
\end{list}
|
Error: “extra alignment tab has been changed to \cr” in pmatrix environment
Trying to compile the matrix with 16 columns:
$$
\begin{pmatrix}
1&0&0&0& 0&0&0&0& 0&1&0&0& 0&0&0&0 \\
0&0&0&0& 1&0&0&0& 0&0&0&0& 0&1&0&0 \\
0&0&1&0& 0&0&0&0& 0&0&0&1& 0&0&0&0 \\
0&0&0&0& 0&0&1&0& 0&0&0&0& 0&0&0&1
\end{pmatrix}
$$
|
produced following error:
./document.tex:750: Extra alignment tab has been changed to \cr.
\endtemplate
l.750 1&0&0&0& 0&0&0&0& 0&1&
0&0& 0&0&0&0 \\
|
It appears that LaTeX has some internal limitation on default maximal number of columns. This can be changed (accoring to
http://newsgroups.derkeiler.com/Archive/Comp/comp.text.tex/2006-06/msg01298.html
) by setting
\setcounter{MaxMatrixCols}{16}
|
in the preamble of the document.