LaTeX Introduction for Word Users

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

1 comments

Comments 1 - 1 of 1 previous next Post a comment

  • + 1xs Alexis Biller 2 years ago
    I found this brief introduction to be really handy. I know I would have enjoyed being at the listening end of the spiel by XEmacs when he first gave this talk - he his an exemplary advocate of best practises in software engineering and linux know-how



    i’ve shared this set with senior lecturers at Imperial College - London, with hope of improving the quality and standard of teaching material deployed in their business school. Naturally, the dept. of computing at Imperial already make extensive use of LaTEX...

Post a comment
Embed Video
Edit your comment Cancel

5 Favorites

LaTeX Introduction for Word Users - Presentation Transcript

  1. Introduction to LATEX for “Word users” Heath James and Guy Kloss IIMS Seminar, 28 March 2007 {h.a.james | g.kloss}@massey.ac.nz LaTeX can save about two months formatting time off the average 3–4 year PhD writing cycle. (Source: Peter Flynn, http://www.silmaril.ie/cgi­bin/blog/)
  2. Introduction What is LaTeX? ● LaTeX vs. Word ● Producing a Simple Document ● LaTeX Installation under Windows ● How to deal with problems? ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 2
  3. What is LaTeX? Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 3
  4. TeX and LaTeX? TeX is a computer program ● created by Donald E. Knuth. It is aimed at typesetting text and mathematical formulas. Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 4
  5. TeX and LaTeX? TeX is a computer program ● created by Donald E. Knuth. It is aimed at typesetting text and mathematical formulas. LaTeX is a macro package which ● enables authors to typeset and print their work at the highest typographical quality, using a predesigned, professional layout. LaTeX was originally written by Leslie Lamport. It uses the TeX formatter as its typesetting engine. Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 5
  6. Why use LaTeX? Portability (Unix, Linux, Windows, MacOS, ● Amiga OS, DOS, ...) Flexibility (lots of packages) ● Precise Control ● Quality of Output (e. g. math formulas) ● Can be used to write documents ● in any language Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 6
  7. Support for any Language Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 7
  8. Other Examples Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 8
  9. Other Examples Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 9
  10. Other Examples Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 10
  11. Other Examples Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 11
  12. Other Examples Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 12
  13. LaTeX vs. Word Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 13
  14. LaTeX vs. Word Suitable for large projects ● – clear, explicit separation: content  style – ease with which a table of contents, bibliography and index can be generated – ability to split books, etc. into smaller (more manageable) pieces that are easily combined once writing is complete Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 14
  15. LaTeX vs. Word Suitable for large projects ● – clear, explicit separation: content  style – ease with which a table of contents, bibliography and index can be generated – ability to split books, etc. into smaller (more manageable) pieces that are easily combined once writing is complete Stability and interchangeability of documents ● (as opposed to Word 6 vs. Office 95 vs. Office 97 vs. Office 2000 vs. Office XP vs. ...) No pressure to upgrade NOW OR ELSE! ● No Word viruses ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 15
  16. Quality TeX Word monetary awards Microsoft Error Reporting version: 3 version: Word 2 ● ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 16
  17. Quality TeX Word monetary awards Microsoft Error Reporting version: 3.1 version: Word 6 ● ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 17
  18. Quality TeX Word monetary awards Microsoft Error Reporting version: 3.141 version: Office 2000 ● ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 18
  19. Quality TeX Word monetary awards Microsoft Error Reporting version: 3.141592 version: Office XP ● ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 19
  20. Math Equations Word: ● LaTeX: ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 20
  21. Producing a Simple Document Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 21
  22. Producing LaTeX Documents For now, we will start with a simple, empty ● (text) document. Usually you start out by filling stuff into a ● skeleton document. Then you learn as you go. ● Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 22
  23. Producing LaTeX Documents For now, we will start with a simple, empty ● (text) document. Usually you start out by filling stuff into a ● skeleton document. Then you learn as you go. ● LaTeX is more WYMIWYG ● (What You Mean is What You Get) than WYSIWYG. Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 23
  24. Producing LaTeX Documents For now, we will start with a simple, empty ● (text) document. Usually you start out by filling stuff into a ● skeleton document. Then you learn as you go. ● LaTeX is more WYMIWYG ● (What You Mean is What You Get) than WYSIWYG. The time invested initially will be very well ● gotten back at later times. – Less annoyances in formatting ... Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 24
  25. Simple Document \\documentclass [a4paper,12pt]{article} \\usepackage {...} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\begin{document} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ . . . % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\end{document} Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 25
  26. Simple Document \\documentclass [a4paper,12pt]{article} preamble \\usepackage {...} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\begin{document} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ . . . % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\end{document} Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 26
  27. Simple Document \\documentclass [a4paper,12pt]{article} preamble \\usepackage {...} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\begin{document} % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ body . . . % ­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ \\end{document} Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 27
  28. Hello World \\documentclass {article} \\begin{document} Hello World! \\end{document} Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 28
  29. Author Info \\title{A Sample Document} \\author{Heath A. James \\and Guy Kloss} \\date{...} . . . \\maketitle Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 29
  30. Author Info \\title{A Sample Document} \\author{Heath A. James \\and Guy Kloss} preamble \\date{...} . . . \\maketitle Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 30
  31. Author Info \\title{A Sample Document} \\author{Heath A. James \\and Guy Kloss} preamble \\date{...} . . . body \\maketitle Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 31
  32. Document Structure \\part{...} \\chapter{...} \\section{...} \\subsection{...} \\subsubsection{...} \\paragraph{...} \\subparagraph{...} Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 32
  33. Necessary Steps to produce a document TeX short cut: input file pdflatex TeX/LaTeX program Output (Paper, DVI file PDF, PS) device driver Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 33
  34. LaTeX File Types .tex LaTeX or TeX input file. Can be compiled with latex. ● .sty LaTeX macro package. This is a file you can load into ● your LaTeX document using the “\\usepackage” command. .cls Class files define what your document looks like. ● They are selected with the “\\documentclass” command. .dtx Documented TeX. This is the main distribution ● format for LaTeX style files. .ins Is the installer for the files contained in the matching ● .dtx file. Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 34
  35. LaTeX Installation under Windows Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 35
  36. How to set up LaTeX for Windows (1) Step One – MiKTeX ● http://www.miktex.org/ Step Two – Ghostscript and GSview ● http://www.cs.wisc.edu/~ghost/ Step Three – Acrobat Reader ● http://www.adobe.com/products/acrobat/readstep2.html Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 36
  37. How to set up LaTeX for Windows (2) Step Four – Windows Editor: ● TeXnicCenter (open source) – http://www.toolscenter.org/ WinEdt (share ware, Massey site license) – http://www.winedt.com/ SciTE (open source) – LaTec plugin for Eclipse (open source) – emacs, vi, ... (open source) – Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 37
  38. Support Programs (1) Viewers ● DVI – xdvi, kdvi, ... ● PDF – Acrobat Reader ● GhostView ● xpdf, kpdf, ... ● Support Tools ● BibTeX – GNUplot – xfig, ... – Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 38
  39. Support Programs (2) Other Tools ● Reference Manager – JabRef (open source, Java) ● http://jabref.sourceforge.net/ Mind Manager – FreeMind (open source, Java) ● http://freemind.sourceforge.net/ Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 39
  40. How to deal with problems? Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 40
  41. Help (1) The Not So Short Introduction to LaTeX2e ● http://tobi.oetiker.ch/lshort/lshort.pdf LaTeX for Word Processor Users ● http://www.tex.ac.uk/tex­archive/info/latex4wp/latex4wp.pdf Comprehensive TeX Archive Network ● http://www.ctan.org/ or http://www.tex.ac.uk/ LaTeX Navigator ● http://tex.loria.fr/english/ TeX Catalogue ● http://www.ctan.org/tex­archive/help/Catalogue/ Wikibook LaTeX ● http://en.wikibooks.org/wiki/LaTeX Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 41
  42. Help (2) LaTeX Related Information ● http://theoval.cmp.uea.ac.uk/~nlct/latex/ For Complete Novices – http://theoval.cmp.uea.ac.uk/~nlct/latex/novices/novices.html To Write a PhD Thesis – http://theoval.cmp.uea.ac.uk/~nlct/latex/thesis/thesis.html LaTeX2e help 1.4 ● http://www.emerson.emory.edu/services/latex/latex2e/latex2e_toc.html Beginning LaTeX ● http://www.cs.cornell.edu/Info/Misc/LaTeX­Tutorial/LaTeX­Home.html Norm Matloff's LaTeX Tutorial Site ● http://heather.cs.ucdavis.edu/~matloff/latex.html 5-Minute LaTeX Tutorial – http://heather.cs.ucdavis.edu/~matloff/LaTeX/FiveMinute.html Introduction to LaTeX for “Word users” IIMS Seminar - 2007-03-28 42
  43. Any Questions? Slides & Further Information: https://GuteFee.massey.ac.nz/moin/HOWTO/LaTeX Introduction to LaTeX for “Word users” 2007-03-28 43

+ XEmacsXEmacs, 2 years ago

custom

5146 views, 5 favs, 7 embeds more stats

A LaTeX introduction for MS Word users

More info about this document

CC Attribution-NonCommercial-ShareAlike LicenseCC Attribution-NonCommercial-ShareAlike LicenseCC Attribution-NonCommercial-ShareAlike License

Go to text version

  • Total Views 5146
    • 5003 on SlideShare
    • 143 from embeds
  • Comments 1
  • Favorites 5
  • Downloads 202
Most viewed embeds
  • 110 views on http://vicente1064.blogspot.com
  • 14 views on https://gutefee.massey.ac.nz
  • 10 views on http://www.kloss-familie.de
  • 3 views on http://manuelpulidomendoza.blogspot.com
  • 3 views on http://embedded.dreamwidth.net

more

All embeds
  • 110 views on http://vicente1064.blogspot.com
  • 14 views on https://gutefee.massey.ac.nz
  • 10 views on http://www.kloss-familie.de
  • 3 views on http://manuelpulidomendoza.blogspot.com
  • 3 views on http://embedded.dreamwidth.net
  • 2 views on http://static.slideshare.net
  • 1 views on http://209.85.171.104

less

Flagged as inappropriate Flag as inappropriate
Flag as inappropriate

Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

Cancel
File a copyright complaint
Having problems? Go to our helpdesk?

Categories