You might be wondering, didn't I say I was done with programming? Well, LaTeX is not a programming language, it's a markup language for creation of documents formatted very verbosely as the creator wanted it to be. It's very different from using a graphical word processor like word. Take this for example:
\documentclass{article} % Starts an article
\usepackage{amsmath} % Imports amsmath
\title{\LaTeX} % Title
\begin{document} % Begins a document
\maketitle
\LaTeX{} is a document preparation system for
the \TeX{} typesetting program. It offers
programmable desktop publishing features and
extensive facilities for automating most
aspects of typesetting and desktop publishing,
including numbering and cross-referencing,
tables and figures, page layout,
bibliographies, and much more. \LaTeX{} was
originally written in 1984 by Leslie Lamport
and has become the dominant method for using
\TeX; few people write in plain \TeX{} anymore.
The current version is \LaTeXe.
% This is a comment, not shown in final output.
% The following shows typesetting power of LaTeX:
\begin{align}
E_0 &= mc^2 \\
E &= \frac{mc^2}{\sqrt{1-\frac{v^2}{c^2}}}
\end{align}
\end{document}
It creates:

Anyways, I'm doing this because natron, a free libre (open source) compositor that's just like nuke, could use a nice e-book about how to effectively use it. It's going to take a while, but I know I can do it.
I feel this needs to exist, because the docs aren't very verbose and the YouTube videos available I don't think is enough.