[SOLVED] CECS451-Homework 1

15.99 $

Category:

Description

Rate this product

Welcome to the LATEX world.

2         Ease of Use

2.1        Maintaining the Integrity of the Specifications

The ‘article’ class is used to format your paper and style the text. All margins, column widths, line spaces, and text fonts are prescribed.

3         Styling Guide

3.1        Abbreviations and Acronyms

Define abbreviations and acronyms the first time they are used in the text, even after they have been defined in the abstract.

3.2        Equations

(1)

(1) is the famous Taylor series. Use “(1)”, not “Eq. (1)” or “equation (1)”, except at the beginning of a sentence: “Equation (1) is . . .”

Taylor series in a text would be.

3.3        Lists

Bullet style list.

  • item 1
  • item 2
  • item 3

Number style list.

  1. item 1
  2. item 2
  3. item 3

3.4        Figures and Tables

Positioning Figures and Tables Figure captions should be below the figures; table heads should appear above the tables. Insert figures and tables after they are cited in the text. Use the abbreviation “Fig. 1”.

Table 1: Table Type Styles

Table

Head

Table Column Head  
Table column subhead Subhead Subhead
       

 

Figure 1: Working example

3.5        Algorithms

i ← 10

if i ≥ 5 then

i i− 1

else

if i ≤ 3 then

i i + 2

end if

end if

3.6        Source codes

public class HelloWorld {

public static void main(String[] args) { System.out.println(“Hello, World”);

}

}