0% found this document useful (0 votes)
4 views3 pages

Mathematical Investigation Template

The document provides a comprehensive guide on using LaTeX for document preparation, including sections on formatting, lists, definitions, theorems, and including mathematical expressions. It also covers how to cite references and include figures, emphasizing the importance of proper structure and commands in LaTeX. An example of a bibliography is provided at the end.

Uploaded by

mycocth16
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views3 pages

Mathematical Investigation Template

The document provides a comprehensive guide on using LaTeX for document preparation, including sections on formatting, lists, definitions, theorems, and including mathematical expressions. It also covers how to cite references and include figures, emphasizing the importance of proper structure and commands in LaTeX. An example of a bibliography is provided at the end.

Uploaded by

mycocth16
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

A template and example of Latex

authors in alphabetical order

Abstract
Some sorts of documents need abstracts. Others do not.

1 Introduction
Start your document with words, written in full sentences and paragraphs.
It is a good idea to break your document into sections and subsections

2 Formating
We can emphasis some words, i.e., make them italic, and we can make some
words bold. Note how using a new line in the code does not correspond to
a new line in the output file. Same if we have a large white space.
Instead, if we want a new line/new paragraph, you need to press enter
twice, or use
which starts a new line but not a new paragraph.

2.1 lists
Lists can be numbered or ununmbered, and you can have sub-list inside a
list.

1. This is the first item in a numbered list.

2. And the second

3. (a) Here the third item is in fact a numbered sub-list.


(b) item 2 of the numbered sub-list

4. • Here the fourth item is an unnumbered sub-list.


• item 2 of the unnumbered sub-list

1
2.2 Definitions and theorems
Definitions, theorems, lemmas and so on, are ’enviroments’ (like documents
and lists). They need to begin and end.

Definition 2.1. A label allows the user to tell Latex ’remember the num-
bering of that definition/theorem/equation’

Lemma 2.2. If something has a label, then we can refer to it, without
knowing what number it is

Proof. For example, by calling up Definition 2.1. This works even if the
ordering of things move. Note that the end of proof square box is already
there

Theorem 2.3. And a final theorem

Proof. Combining Definition 2.1 with Lemman 2.2 we get Equation 2 below.

3 Including maths
Some maths, like ε > 0 or a23 = α3 , is written in-line. More important or
complex maths is displayed on its own line. For example,
π
lim f (x) = .
x→∞ 4
Sometimes you need multiple lines of maths to line up nicely:

f (x + y) = (x + y, −2(x + y))
= (x, −2x) + (y, −2y)
= f (x) + f (y),

and sometimes you want to number lines in an equation

 T
T 1 2
A = (1)
3 4
 
1 3
= (2)
2 4

2
Figure 1: The logo for the University of Bristol

4 References and Figures


LATEX [1] also allows you to cite your sources. For more details on how this
can be done, we refer the reader to [2, sec: Embedded System]. But once
you have a bibliography, you can use the cite command easily. Finally we
add Figure 1 to show how to add graphics. Note that we first need to make
sure to have the graphic uploaded to Overleaf or saved in the same folder as
your tex file (whichever is relevant to your case). Notice how the picture was
resized using the scale command and that LATEX determine that the picture
looks better above.

References
[1] Leslie Lamport, LATEX: a document preparation system, Addison Wes-
ley, Massachusetts, 2nd edition, 1994.

[2] Wikibooks, LaTeX/Bibliography Management, [0nline], Accessed


at https://en.wikibooks.org/wiki/LaTeX/Bibliography Management,
(DATE ACCESSED).

You might also like