๐Ÿ”„Refresh
โฌ…๏ธBack
โžก๏ธForward
๐Ÿ”—Copy Link
Content Free Demo Reviews Price RO RO
๐ŸŽ“ Academic - University Standard

Create Professional
Documents with LaTeX

The typesetting system used by universities and journals worldwide. Learn to create theses, scientific articles and impeccable documents. 12 modules, 40+ practical exercises.

12
Modules
8h+
Content
40+
Exercises
5โญ
Rating
document.tex
1\documentclass{article}
2\usepackage{amsmath}
3
4\begin{document}
5
6\section{Pythagorean Theorem}
7For a right triangle:
8\begin{equation}
9  a^2 + b^2 = c^2
10\end{equation}
11
12\end{document}
โœ“ Mathematical Formulas
โœ“ Theses & Articles
โœ“ BibTeX Bibliographies
WHY LATEX?

What You Get

The gold standard for academic documents

๐Ÿ“

Perfect Formulas

The most beautiful mathematical formulas possible

๐Ÿ“š

Auto Bibliographies

BibTeX manages citations automatically

๐ŸŽ“

Academic Standard

Required by top journals and universities

๐Ÿ”„

Versioning

Text files easy to version with Git

CURRICULUM

What You'll Learn

12 modules for professional documents

1
Introduction to LaTeX
4 lessons โ€ข 35 min
+
โ–ถ
What is LaTeX and why use it?FREE10 min
โ–ถ
Installation (TeX Live, MiKTeX) or OverleafFREE12 min
โ–ถ
Your First LaTeX Document8 min
?
Quiz: LaTeX Basics5 min
2
Document Structure
5 lessons โ€ข 40 min
+
โ–ถ
Preamble and documentclass10 min
โ–ถ
Document types (article, report, book)8 min
โ–ถ
Packages and usepackage10 min
โ–ถ
Sections, chapters, subsections8 min
โœŽ
Exercise: Document structure4 min
3
Text Formatting
5 lessons โ€ข 40 min
+
โ–ถ
Bold, italic, underline8 min
โ–ถ
Font sizes and styles8 min
โ–ถ
Alignment and spacing10 min
โ–ถ
Special characters and accents8 min
โœŽ
Exercises: Formatting6 min
4
Lists and Tables
5 lessons โ€ข 45 min
+
โ–ถ
itemize and enumerate8 min
โ–ถ
Nested and customized lists8 min
โ–ถ
Basic tables (tabular)12 min
โ–ถ
Advanced tables (booktabs, multirow)10 min
โœŽ
Project: Data table7 min
5
Mathematical Formulas
7 lessons โ€ข 60 min
+
โ–ถ
Math mode: inline and display10 min
โ–ถ
Fractions, exponents, subscripts10 min
โ–ถ
Sums, integrals, limits10 min
โ–ถ
Matrices and equation systems10 min
โ–ถ
Symbols and operators8 min
โœŽ
Exercises: Complex formulas8 min
?
Quiz: Math Mode4 min
6
Figures and Images
4 lessons โ€ข 35 min
+
โ–ถ
includegraphics and graphicx10 min
โ–ถ
figure environment and caption10 min
โ–ถ
Figure positioning (h, t, b, p)8 min
โœŽ
Exercise: Document with figures7 min
7
References and Citations
5 lessons โ€ข 45 min
+
โ–ถ
label and ref - Internal references10 min
โ–ถ
BibTeX - Introduction12 min
โ–ถ
Creating the .bib file10 min
โ–ถ
Bibliography styles8 min
โœŽ
Project: Article with citations5 min
8
Thesis Templates
4 lessons โ€ข 40 min
+
โ–ถ
Structure of a thesis12 min
โ–ถ
Special pages (title, abstract, TOC)12 min
โ–ถ
Appendices and annexes8 min
โœŽ
Project: Thesis template8 min

+ 4 advanced modules including:

Beamer Presentations โ€ข Algorithms and Source Code โ€ข TikZ Diagrams Basics โ€ข Final Projects (CV, Article)

TRY FOR FREE

Demo Lesson

Explore LaTeX before you buy

๐Ÿ“ Introduction to LaTeX
Free Lesson

Why LaTeX?

LaTeX is not a word processor - it's a typesetting system that separates content from formatting. You write the text and commands, and LaTeX takes care of the perfect layout.

๐Ÿ’ก Pro Tip

Use Overleaf.com to write LaTeX online, without installation. It's free and collaborative!

LaTeX Advantages:

  • Perfect mathematical formulas - No other system does them better
  • Consistency - Formatting is automatic and uniform
  • Automatic bibliographies - BibTeX manages citations
  • Academic standard - Required by journals and conferences
  • Total control - You can customize any aspect

Basic Structure:

LaTeX
\documentclass[12pt]{article}

% Preamble - packages and settings
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}

\title{Document Title}
\author{Your Name}
\date{\today}

\begin{document}

\maketitle

\section{Introduction}
This is my first LaTeX document.

\section{Mathematical Formulas}
Einstein's equation:
\begin{equation}
    E = mc^2
\end{equation}

\end{document}

Mathematical Formulas:

LaTeX excels at formulas. You can write inline with $...$ or display mode with \[...\]:

LaTeX
% Inline math
Let $f(x) = x^2 + 2x + 1$ be a quadratic function.

% Display math
\[
    \int_0^\infty e^{-x^2} dx = \frac{\sqrt{\pi}}{2}
\]

% Numbered equation
\begin{equation}
    \sum_{n=1}^{\infty} \frac{1}{n^2} = \frac{\pi^2}{6}
\end{equation}

% Fractions and limits
\[
    \lim_{x \to 0} \frac{\sin x}{x} = 1
\]
โš ๏ธ Warning

LaTeX is sensitive to errors! A missing brace can generate cryptic errors. Compile often to catch errors early.

Want to practice?

Go to the "Editor" tab and write your own LaTeX code!

document.tex
Source Code (.tex)
PDF Preview (Simulated)
LaTeX

1 Pythagorean Theorem

For a right triangle with legs a and b and hypotenuse c, we have:

aยฒ + bยฒ = cยฒ     (1)

2 Example

If a = 3 and b = 4, then:

c = โˆš(3ยฒ + 4ยฒ) = โˆš25 = 5

๐ŸŽฏ

Quick Exercise

Test your knowledge

Your task:

  • Add a new section with \section{Quadratic Formula}
  • Write the formula: x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}
  • Add an explanatory paragraph
โ„น๏ธ Note

The preview above is a simulation. In the complete course you'll work with Overleaf or TeX Live and generate real PDFs!

REVIEWS

What Students Say

โ˜…โ˜…โ˜…โ˜…โ˜…

"I wrote my entire bachelor's thesis with LaTeX thanks to this course. The professor was impressed by the document quality!"

M
Mary Constantine
Mathematics Graduate
โ˜…โ˜…โ˜…โ˜…โ˜…

"BibTeX changed my life. I no longer spend hours formatting bibliographies manually. The course explains everything clearly."

P
Paul Vasquez
Physics PhD Student
โ˜…โ˜…โ˜…โ˜…โ˜…

"I published my first article in an international journal. LaTeX was mandatory and this course prepared me perfectly."

A
Anna Drake
Researcher
LIMITED OFFER

Invest in Professional Documents

๐ŸŽ“ ACADEMIC

Complete LaTeX Course

From zero to professional academic documents. Theses, articles, presentations.

โ‚ฌ30 โ‚ฌ60
โœ“12 Complete Modules
โœ“40+ Practical Exercises
โœ“Mathematical Formulas
โœ“BibTeX & Bibliographies
โœ“Thesis Templates
โœ“Beamer Presentations
โœ“Lifetime Access
โœ“๐Ÿ† Certificate of Completion
Buy Nowโ†’
๐Ÿ›ก๏ธ30-Day Money-Back Guarantee

๐Ÿ’ก All prices shown do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.

Frequently Asked Questions

Not necessarily! You can use Overleaf.com (free) which runs in the browser. Alternatively, you can install TeX Live (Linux/Mac) or MiKTeX (Windows) for offline work.
At first it seems intimidating, but once you understand the structure, it becomes very logical. In 2-3 hours of the course you'll be able to create basic documents. Mathematical formulas are the easiest - and most satisfying!
Absolutely! CVs in LaTeX look extremely professional. In the course we have a dedicated module with templates for modern CVs.
Yes! With the inputenc and babel packages properly configured, you can write in any language with special characters without problems.

Create Impeccable Documents

LaTeX is the standard for academic documents. Your thesis deserves to look professional.

๐Ÿ›’Buy Course - โ‚ฌ30

๐Ÿ’ก All prices shown do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.