Has it not ever occurred to you the word processors we normally use bite us only too hard when it comes to formatting lengthy documents? The pictures are never there where you originally put it. Paragraphs break at the most uncanny locations. Alignments, white spaces, line spacing....arrgh the list is endless...
Would it not be cool, if you could just write whatever you wanted to be in your report and leave adding makeup part to the word processor? Well, you can. All you have to do is get used to using LaTex (pronounced either "Lah-tech" or "Lay-tech") .
Here is what you need to get yourself going. I was doing this on Windows OS. AFAIK creating LaTeX documents can be done on Linux environments as well. I am yet to explore on that particular phase.
- Download a text editor that can compile & parse LaTeX source. I use WinEdt. Pretty good it is!
- You need a few supplementary software. These are mandatory. So don't ask questions. Just have them installed before you compile your LaTeX source.... :D
- MikTex (The more recent the version is the better)
- GhostView
- GhostScript
- There is no need for any of these software to be installed in a particular order. Just be a little cautious about the platform you are on when installing stable binary distributions of these aforementioned software.
The following code is a simple structure of a LaTex document.
\documentclass[a4paper,11pt]{report}
\usepackage[pdftex]{graphicx}
\usepackage{fancyheadings}
\pagestyle{headings}
\begin{document}
\title{Coffee Tales}
\author{Sachini Weerawardhana}
\maketitle
\begin{abstract}
This is a silly document. No need for abstracts here!
\end{abstract}
\newpage
\tableofcontents
\chapter{Introduction}
This will be the first chapter with the title Introduction. Has two sections; dummy section 1 & dummy section 2
\section{dummy section 1}
\section{dummy section 2}
\chapter{How To Make Good Coffee}
Sections below describes how you can find out yourself if your coffee mug sucks or not!
\section {Is Good Coffee Hard to Find?}
OK so, good coffee is hard to find. Want to know why?
\chapter{Coffee Makers Inside Vehicles?}
Some incoherent nonsense goes here.
\end{document}
Write all that on a new document in WinEdt, save the document as
No comments:
Post a Comment