General ⇒ Use LaTeX without learning it
-
- Posts: 29
- Joined: Wed Jul 18, 2012 4:55 pm
Use LaTeX without learning it
Learning LaTeX for Finance and Actuarial Studies.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Use LaTeX without learning it
However, I recommend to learn a bit LaTeX. The basic LaTeX, which you would use for short texts on flashcards, is not very hard. You don't need to learn about macro definitions, packages, and classes. I even think, once you have gone the way via export and copy, you have seen and learnt the used LaTeX syntax.
Stefan
-
- Posts: 29
- Joined: Wed Jul 18, 2012 4:55 pm
Use LaTeX without learning it
Code: Select all
%% LyX 2.0.4 created this file. For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[oneside,english]{book}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{amsthm}
\usepackage{amsmath}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands.
\numberwithin{equation}{section}
\numberwithin{figure}{section}
\makeatother
\usepackage{babel}
\begin{document}
This is my first Lyx document!
\section{This is an introduction to my first Lyx document.}
\section{About This Document.}
Sections and subsections are described below.
\subsection{Section Description }
Sections are bigger than subsections.
\subsection{Subsection description }
Subsections are smaller than sections.
\section{More Stuff.}
Lyx is better than other word processors because
\begin{enumerate}
\item Tysetting is done for you.
\item Math is WYSIWYG
\item Lists are very easy to create!\end{enumerate}
\end{document}
Code: Select all
This is my first Lyx document!
\section{This is an introduction to my first Lyx document.}
\section{About This Document.}
Sections and subsections are described below.
\subsection{Section Description }
Sections are bigger than subsections.
\subsection{Subsection description }
Subsections are smaller than sections.
\section{More Stuff.}
Lyx is better than other word processors because
\begin{enumerate}
\item Tysetting is done for you.
\item Math is WYSIWYG
\item Lists are very easy to create!\end{enumerate}
Learning LaTeX for Finance and Actuarial Studies.