NewTechNote

From PCTeXWiki

Contents

Template for new TPJ technical note

Technical notes are written by LaTeX experts for the benefit of beginning or casual LaTeX users.


Article title

Author
Abstract: This article describes how children under the age of five use LaTeX.
Mini bio: Author has just reached her sixth birthday and has been using LaTeX since age two. You may reach her at jill at kidsmail dot goo.

mailto:jill@kidsmail.goo

Introduction

You can actually write your article in the wiki, and it will published as a web page. It would be nice to encourage more of this, especially for LaTeX tips and tricks.

Next section

Some common wiki editing features are shown below. For more detail see [1].

Unordered list:

  • First item
    • Subitem
  • Second item
    • Subitem
      • Subsubitem

Ordered list:

  1. First item
    1. Subitem
  2. Second item
    1. Subitem
      1. Subsubitem

Indented list:

First item
Subitem
Second item
Subitem
Subsubitem


Italics: Enclose italicized words or phrases in double apostrophes: ''italics'' gives italics.

Bold: Enclose bold words or phrases in triple apostrophes: '''Bold phrase''' gives Bold phrase.

Bold italic: Use five apostrophes: bold italic.

Subsection

UTF-8 characters work as typed (no worries about correct character encodings): cursa o 6º período do curso de graduação em Computação

You can write actual math: \int_0^\infty f(t) dt

You can include LaTeX code fragments:

 \documentclass[12pt]{article}
 \usepackage{amsmath}
 \title{\LaTeX}
 \date{}
 \begin{document}
   \maketitle 
   \LaTeX{} is a document preparation system for the \TeX{} 
   ...
   % This is a comment; it is not shown in the final output.
   % The following shows a little of the typesetting power of LaTeX
   \begin{align}
     E &= mc^2                              \\
     m &= \frac{m_0}{\sqrt{1-\frac{v^2}{c^2}}}
   \end{align}
 \end{document}