69

Installation guide for Latex and MOODLE

Embed Size (px)

DESCRIPTION

This presentation tells you how to install latex and moodle on your computer. It explains the features as well

Citation preview

Page 1: Installation guide for Latex and MOODLE
Page 2: Installation guide for Latex and MOODLE

WHAT IS LATEXWHAT’s in a NAME? LaTeX is usually

pronounced /leɪtɛk/ or /ˈlɑːtɛk/ T, E, X stands for

capital Greek letters tau, epsilon, and chi

The name is traditionally printed in running text with a special typographical logo: 

Page 3: Installation guide for Latex and MOODLE

ABOUT LATEX

LaTeX is macro package for the type setting system TeX. TeX has been developed between 1977 and 1986 by Donald E. Knuth. In 1984 Leslie Lamport developed LaTeX on top of TeX to ease its usage for normal document authors. Today most people are using LaTeX instead of directly TeX.

Page 4: Installation guide for Latex and MOODLE

WHAT EXACTLY IS THE DIFFERENCE? TeX It is a typesetting system. It provides many commands which allow you to specify the format of your document

with great detail (e.g. font styles, spacing, kerning, ligatures, etc.) It has specialized algorithms to compute the optimal flow of text in your document

(e.g. where to cut lines, pages, etc.). TeX is all about giving you powerful algorithms and commands to specify even the

tiniest detail to make your documents look pretty.

LaTeX It is a set of macros built on top of TeX. The idea behind LaTeX is to shift the focus from the format to the content of your

document. In LaTeX commands are all about giving a structure to the content of your document

(e.g. sections, emphasis, tables, indices, etc.). In LaTeX you just say \section{...} instead of: selecting a larger font, a different font

style, and inserting appropriate spaces before and after the section heading. As LaTeX is built on top of TeX you also get, of course, a beautiful document as your

output; but, more importantly, your source input can also be well structured, easier to read (and write!) for humans.

In short TeX is all about formatting, for document/template designers, while LaTeX is all about content, for document writers.

Page 5: Installation guide for Latex and MOODLE

NO WYSIWYG

Today most document systems like Microsoft Word or OpenOffice are working based on the so called WYSIWYG (what you see is what you get) concept.

If you are used to this, working with LaTeX will be quite new to you. Instead of typing in a document showing the final layout the document is typed as a simple text file.

Special formats like headings of emphasizes are achieved by using LaTeX’s markup commands.

If you are used to HTML this may be quite familar to you, with the difference that LaTeX is focused on high quality printable documents like books.

To get the final output, the LaTeX source you have creates as a simple text file is compiled by the LaTeX compiler.

The result will normally be a DVI, PostScript or PDF file.

Page 6: Installation guide for Latex and MOODLE

SHORT EXAMPLE

Lets run through a short example!! First make sure you have a latex

distributionInstalled. Open your favorite text editor – even

Notepad will be good enough – and enter the following text .

Now type the following!

Page 7: Installation guide for Latex and MOODLE

HERE’S WHAT YOU TYPE! \documentclass{article}   \title{My first \LaTeX\ document} \author{You!}   \begin{document} \maketitle \tableofcontents   \section{My first Section} \label{firstSection}   This is my first section!   LaTeX is great in setting formulas like in example $c = \sqrt{a^2 + b^2}$   \section{My secon Section}   Even referencing other sections is very easy. See section~\

ref{firstSection}. \end{document}

Page 8: Installation guide for Latex and MOODLE
Page 9: Installation guide for Latex and MOODLE

HERE’S WHAT YOU GET!

Page 10: Installation guide for Latex and MOODLE

THIS IS WHAT LIES IN BETWEEN Save the file as ‘demo.tex’. Now open up a

windows command line and use the ‘cd’ command to change to the directory where you have stored your file.

Enter pdflatex demo.tex LaTeX will print some output. When it is

finished execute the same command again. Now you will find a file called ‘demo.pdf’ in

the same directory. Open it in your favorite PDF-viewer like i.e.

Adobe Reader and you will see something similar to the screenshot shown!

Page 11: Installation guide for Latex and MOODLE

ANOTHER EXAMPLE!

Page 12: Installation guide for Latex and MOODLE

DISADVANTAGES

The drawbacks of this concept seem to be clear:

Complicated workflow (editing a text file, calling the LaTeX compiler, using an additional software like Adobe Reader to view the output)

High learning efforts to get used to the LaTeX markup commands.

To tell it in advance: Both drawbacks are not really existing any more when working with TeXnicCenter.

Page 13: Installation guide for Latex and MOODLE

WHY LATEX?(IN OTHER WORDS, ITS ADVANTAGES!!)

Why latex over a modern WYSIWYG tool like OpenOffice? THIS IS WHY!!

Advantage MSWord LaTex

Concentrate on Content not on Layout

Move figures to different positions until you get what you want

Simply say “include this graphic” and LaTeX will care about where to place it exactly

Scalability All your figures appear at the end of the document though you placed them somewhere else

Just reference a figure in the text position where it belongs to and LaTeX will care about were the figure will be placed

Page 14: Installation guide for Latex and MOODLE

QUITE A LOT OF REASONS!

Advantages MSWord LaTex

High Quality The document output generated by LaTeX is of very high quality – higher than what you might expect from Microsoft Word or OpenOffice

When mathematical formulas are involved, the results are impressive. Even today, many – especially scientific – books are written using LaTeX.

Platform Independent

The layout of such documents is always based on the currently selected printer driver. When tuning a document at home and printing it at the college the result may be quite different.

The output generated by LaTeX is fixed and will look the same. pdfLaTeXdirectly generates PDF output with all its known advantages.

Performance When you are a fast typer, you often hate word when you are again grapping the mouse to change a paragraphs style. For fast typers it is easier to keep hands on the keyboard.

Different text styles are referenced by markup commands. You will be quicker with LaTeX than with other systems, that is if you are a fast typer.

Page 15: Installation guide for Latex and MOODLE

SEEMS TOUGH? DON’T WORRY!Now you know the pros and cons of LaTeX.

If you like its features but fear about its drawbacks we have good news for you: TeXnicCenter will make it easy for you to get started with LaTeX.

It provides many menu items and dialogs to quickly insert the necessary markup commands.

Its integration with the LaTeX environment and the output viewers allows you to do all your work from within the TeXnicCenter user interface.

No need to open up a command line any more .

Page 16: Installation guide for Latex and MOODLE

COMMANDS IN COMMAND What it does

\cal Calligraphic letters

\frac{numerator}{denominator}

Fraction in math

\paragraph[toctitle]{text} Begins a new paragraph, automatically headed and numbered.

\tan Is tan (math mode)

\subsubsection[toctitle]{text}

Begin new subsections, automatically headed and numbered

\thanks{footnote} Adds an acknowledgementfootnote to an author's name used in a\maketitle command.

\today Generates today's date.

\copyright Generates ©

Page 17: Installation guide for Latex and MOODLE

MORE COMMANDS, SYMBOLS!

Capital letters are obtained by capitalizing the LaTeX command for the lowercase version. Capital letters in grey are exceptions which have no LaTeX commands.

Page 18: Installation guide for Latex and MOODLE

INSTALLATION

LATEX Installation GuideThis guide will tell you how to get started with LATEX. In order to use LATEX on Windows you must install MiKTeX and TeXnicCenter. Once you have set these up you will be able to write or download a .tex input file and produce a pdf.

Page 19: Installation guide for Latex and MOODLE

A. INSTALL MIKTEX

Page 20: Installation guide for Latex and MOODLE
Page 21: Installation guide for Latex and MOODLE
Page 22: Installation guide for Latex and MOODLE
Page 23: Installation guide for Latex and MOODLE
Page 24: Installation guide for Latex and MOODLE
Page 25: Installation guide for Latex and MOODLE
Page 26: Installation guide for Latex and MOODLE
Page 27: Installation guide for Latex and MOODLE
Page 28: Installation guide for Latex and MOODLE

B. INSTALL TeXnicCenter

Page 29: Installation guide for Latex and MOODLE
Page 30: Installation guide for Latex and MOODLE
Page 31: Installation guide for Latex and MOODLE
Page 32: Installation guide for Latex and MOODLE
Page 33: Installation guide for Latex and MOODLE
Page 34: Installation guide for Latex and MOODLE
Page 35: Installation guide for Latex and MOODLE
Page 36: Installation guide for Latex and MOODLE
Page 37: Installation guide for Latex and MOODLE
Page 38: Installation guide for Latex and MOODLE
Page 39: Installation guide for Latex and MOODLE

C. CONFIGURE TeXnicCenter

Page 40: Installation guide for Latex and MOODLE
Page 41: Installation guide for Latex and MOODLE
Page 42: Installation guide for Latex and MOODLE
Page 43: Installation guide for Latex and MOODLE
Page 44: Installation guide for Latex and MOODLE
Page 45: Installation guide for Latex and MOODLE
Page 46: Installation guide for Latex and MOODLE
Page 47: Installation guide for Latex and MOODLE

WHAT IS ??Modular

Object

Oriented

Dynamic

Learning

Environment It is a free software e-learning platform,

also known as a Learning Management System, or Virtual Learning Environment (VLE).

Page 48: Installation guide for Latex and MOODLE

As of June 2013  User base of 83,008 registered and verified sites 70,696,570 users 7.5+ million courses 1.2+ million teachers.Moodle was developed by Martin

Dougiamas  Help educators create online courses Focus on interaction Collaborative construction of content

Page 49: Installation guide for Latex and MOODLE

moodle IS VERSATILE can be A complete online learning environment A focal point for online collaboration A repository for self study courses and

materials

can contain Collaborative synchronous courses Independent, self paced courses

Page 50: Installation guide for Latex and MOODLE

WHO USES MOODLE? Universities High schools Primary schools Government departments Healthcare organizations Military organizations Airlines Oil companies Homeschoolers Independent educators Special educators

Page 51: Installation guide for Latex and MOODLE

Supported by a global community

Robust open source learning

platform

Powering learning environments

worldwide

Page 52: Installation guide for Latex and MOODLE

REQUIREMENTSHARDWARE Disk space: 160 MB (min) , 5 GB would be

ideal Backup: The same as disk space Memory: 256 MB (min), 1 GB optimal

SOFTWARE Operating System: Linux more preferable Web Server: Apache or IIS PHP: minimum version 5.3.2 Database: MySQL and PostgreSQL Browser: Firefox 4, Internet Explorer 8, Safari

5, Google Chrome 11, Opera 9

Page 53: Installation guide for Latex and MOODLE

GENERAL FEATURES ADMINISTRATIVE FEATURES COURSE DEVELOPMENT MANAGEMENT FEATURES

Page 54: Installation guide for Latex and MOODLE

GENERAL FEATURES Modern, easy to use interface Personalized Dashboard Collaborative tools and activities All-in-one calendar Convenient file management Simple and intuitive text editor Notifications Track progress

Page 55: Installation guide for Latex and MOODLE

ADMINISTRATIVE FEATURES Customizable site design and layout Secure authentication and mass

enrolment Multilingual capability Bulk course creation and easy backup Manage user roles and permissions Supports open standards High interoperability Simple add-ons and plug-in

management Detailed reporting and logs Regular security updates

Page 56: Installation guide for Latex and MOODLE

COURSE DEVELOPMENT AND MANAGEMENT FEATURES Direct learning paths Encourage collaboration Embed external resources Multimedia Integration Group management Marking workflow In-line marking Peer and self assessment Integrated Badges Outcomes and rubrics Security and privacy

Page 57: Installation guide for Latex and MOODLE

INSTALLATIONIt has just 3 basic steps1. Download and unpack the complete

install package.2. Start the webserver.3. Install Moodle using a web browser.

Page 58: Installation guide for Latex and MOODLE

1. DOWNLOAD AND UNPACK PACKAGE

Page 59: Installation guide for Latex and MOODLE
Page 60: Installation guide for Latex and MOODLE

2. START THE WEBSERVER

Page 61: Installation guide for Latex and MOODLE

3.START MOODLE INSTALLATION

Page 62: Installation guide for Latex and MOODLE
Page 63: Installation guide for Latex and MOODLE
Page 64: Installation guide for Latex and MOODLE
Page 65: Installation guide for Latex and MOODLE
Page 66: Installation guide for Latex and MOODLE
Page 67: Installation guide for Latex and MOODLE
Page 68: Installation guide for Latex and MOODLE
Page 69: Installation guide for Latex and MOODLE