

[ENGLISH BELOW]
Ben je bezig aan een thesis of moet je een voorstudie, cv of eenderwelk verslag maken. Wil je dat het er professioneel uitziet en simpel aanpasbaar is? Kom dan zeker deze woensdag 16/03 om 18.00 naar E 1.2 voor een interessant lesje LaTeX.
LaTeX, niet te verwarren met het synthetische materiaal, is een taal en een softwareprogramma om documenten te maken. Het wordt veelvuldig gebruikt in de academische wereld als een alternatief voor tekstverwerkers zoals Word.
LaTeX maakt standaard professioneel ogende documenten. Ook een inhoudsopgave aanpassen of referenties in het juiste formaat toevoegen is een fluitje van een cent.
Waarom is LaTeX dan geen standaardsoftware? Een van de grote nadelen is dat LaTeX een steilere leercurve heeft vergeleken met Word. Maar wanneer je het eenmaal onder de knie hebt, zal het je leven een stuk makkelijker maken.
Onderaan nog een voorbeeld van een “Hello World”-LaTeX document:
Hebben we uw interesse gewekt? Wij hopen u op deze woensdag vanaf 18 uur in E1.2 te mogen verwelkomen!
Are you writing your thesis or do you need to make a preliminary study or a cv, or any kind of document, but you want to make it professional looking and easily customizable? Then make sure to join us this wednesday 16/03 at 6.00 PM/18.00 in E 1.2 for an interesting LaTeX course!
LateX, not to be confused with the synthetic material, is both a language and software program to typeset documents. It is widely used in academia as an alternative to word processors such as Microsoft Word.
The advantage of LateX is that it produces professional looking documents by default, and makes things such as changing the table of contents or adding references in the correct format much easier.
So why is LaTeX not standard software? The disadvantage of LaTeX is that is has a steeper learning curve compared to applications such as Microsoft Word. But, once you get the hang of it, it will make your life much easier.
For an Example “Hello World”, see the bottom of this page.
Have we sparked your interest? We hope to welcome you this wednesday from 18 hr onwards in E1.2.
\documentclass{article}
% This is a comment
% Set title and author
\title{My Example Title}
\author{An Author Name}
\begin{document}
% Create the title page
\maketitle
% Print the table of contents
\tableofcontents
% Create a new page
\newpage
% Create a new section (heading 1 in Word)
\section{An example section}
% The contents of the section
Hello world!
\end{document}