First File

Below is a sample file. Type it in Notepad or Emacs, run it and see the product. Things to note are the \begin{docoment} and \end{document} which must be accompnied for all documents. Also, there are three type of documents. They are:
  • article
  • book
  • letter
    \documentclass[a4paper,12pt]{article}
    \begin{document}
    
    Hello World!  This is Natkeeran's First File.  
    
    We are going to type a paragraph and see what happens.
    So this is a paragraph, ha!  Hey what about another paragraph.  
    
    Ok.  So you want another paragrph.  Fine, you got
    another paragraph.  What now.  Note the required
    convetions at the top and bootom.  Ok.  
    
    \end{document}