-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanual.tex
57 lines (45 loc) · 2.1 KB
/
manual.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
\documentclass[letterpaper,12pt,twoside]{book}
% Uncomment the following line to allow the usage of graphics (.png, .jpg)
%\usepackage[pdftex]{graphicx}
% Comment the following line to NOT allow the usage of umlauts
\usepackage[utf8]{inputenc}
\usepackage {tabu}
\usepackage{filecontents}
\usepackage[table]{xcolor}
\usepackage {longtable}
\usepackage{fancyhdr}
\usepackage{arydshln}
\usepackage{tikz-timing}[2009/05/15]
% define lightgray
\definecolor{lightgray}{gray}{0.9}
% alternate rowcolors for all tables
\let\oldtabular\tabular
\let\endoldtabular\endtabular
\renewenvironment{tabular}{\rowcolors{2}{white}{lightgray}\oldtabular}{\endoldtabular}
% alternate rowcolors for all long-tables
\let\oldlongtable\longtable
\let\endoldlongtable\endlongtable
\renewenvironment{longtable}{\rowcolors{2}{white}{lightgray}\oldlongtable} {
\endoldlongtable}
\usepackage{geometry}
\geometry{textwidth=7.5in}
\pagestyle{fancy}
\fancyhf{}
\fancyfoot[CE,CO]{\leftmark}
\fancyfoot[RE,RO]{Electronics Design [User Manual]\thepage}
\renewcommand{\headrulewidth}{2pt}
\renewcommand{\footrulewidth}{1pt}
% Start the document
\begin{document}
\title{Electronics Design Technical Manual}
\author{Thomas Epperson}
\maketitle
\newpage
\tableofcontents
\newpage
\chapter {Use cases}
\chapter {Libraries}
Libraries contain content uses as the building blocks of a design. Libraries are stored in a variety of ways, and the ways to access those libraries depend on how they are stored. Creator ids are registered and two different entities should not have the same identifier. The id of the library is specific to the producer. Two different libraries should not have the same identifier. As long as a change to a library is still compatible with previous versions, only a change in the minor version is required. Libraries are assumed to be forward compatible as long as the creator, id, and major version are the same.
\section {Local File}
A library can be contained in a local file. A local file may be network accessible by means of some standard file mapping technology. Probably not the best option to use for a network accessible library.
\end{document}