Skip to content

Unisa-Notes/COS1512

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNISA COS1512 Quick Reference

This repo contains the LaTex files needed to compile a set of quick reference notes for the course Introduction to Programming II, using the programming language C++, at the University of South Africa.

Accessing the Notes

A PDF can be generated using lualatex, or xelatex. If you want to access pregenerated PDFs, please check the Releases section on the sidebar.

Note

This is a work in progress, with chapters and examples to come.
If you are able, and interested in contributing, please do!
If there is something missing, or something that you feel needs further clarification, please open an issue.

Contributing

Please fork this repo, make your changes, and then open a pull request.

Units Covered

  • Unit 0: COS1511 Reference
  • Unit 1: Overloading and Assert Macro
  • Unit 2: I/O Streams
  • Unit 3: Strings and Vectors
  • Unit 4: Pointers and Dynamic Arrays
  • Unit 5: Defining Classes
  • Unit 6: Friends and Overloaded Operators
  • Unit 7: Separate Compilation (Abstract Data Types)
  • Unit 8: Recursion
  • Unit 9: Inheritance
  • Unit 10: Templates

The Code

The Structure

  • The file notes.tex contains the general structure and order of the files. Building this file should build all the other .tex files, and include them in one .pdf called notes.pdf
  • Each unit has a separate tex file where the notes are written. These are contained in the units folder, with a sepparate folder for each unit.
  • The styles, commands and packages used are in the package file nostestyles.sty

Packages Used

TeX packages that have been used are:

Commands Added

For intellisense, a list of the commands is added in the package_intellisense folder. These have been written in formats that can be understood by different LaTeX tools.

Commands

  • addfile [input] {<filename>}: Include or input the file into the document. By default, it includes the file, the option input can be given to input it instead.
  • concept {text}: Mark specific text as a concept to be learned. Puts the text in bold.
  • nl: Force a line break within a cell in a table
  • question {text}: Mark specific text as a question. Puts the text in bold, and adds extra spacing.
  • rulebookend: Insert a decorative horizontal line at the end of the text.
  • rulechapterend: Insert a decorative horizontal line at the end of each unit.

Environments

  • codebox {title}: Colored box used to highlight code
  • definition {title}: Colored box used for highlighting important concepts.
  • example: Colored box used to highlight examples.
  • exercise {title}: Colored box used to highlight exercises.
  • indentparagraph: Indent selected text to the left.
  • sidenote: Colored box used to indicate extra information.