-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppDevGuide.tex
More file actions
89 lines (72 loc) · 2.06 KB
/
AppDevGuide.tex
File metadata and controls
89 lines (72 loc) · 2.06 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
\documentclass{book}
\usepackage{times}
% set margins
\usepackage[margin=1in]{geometry}
% left-align first line of new paragraph
\usepackage{parskip}
% make hyperlinks appear blue
\usepackage{hyperref}
\hypersetup{colorlinks, bookmarksnumbered, linkcolor=blue}
% code listings
\usepackage{listings}
\lstloadlanguages{C,C++,make,sh}
\lstset{basicstyle=\ttfamily,xleftmargin=\leftmargini}
% indent all code sections
\usepackage{fancyvrb}
\RecustomVerbatimEnvironment{verbatim}{Verbatim}{xleftmargin=\leftmargini}
% mark overfull lines in the PDF output
% enable this for debugging only
%\overfullrule=1ex
\usepackage{longtable}
\usepackage{makeidx}
\makeindex
% This causes an error from latex2html but is required for the
% title page to be rendered correctly as a PNG image.
\usepackage{graphicx}
% directories containing images
\graphicspath{ {diags/}{eps/} }
% numbersubsubsections, reduce TOC depth
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{1}
% make all depths of list items use the same bullet
\renewcommand{\labelitemii}{\labelitemi}
\renewcommand{\labelitemiii}{\labelitemi}
\renewcommand{\labelitemiv}{\labelitemi}
\begin{document}
\thispagestyle{empty}
\input{tex/titlepage.tex}
\ifx \HCode\UnDef
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Contents}
\tableofcontents
\fi
\input{tex/introduction.tex}
\input{tex/gettingStarted.tex}
\input{tex/overview.tex}
\input{tex/epicsBuildFacility.tex}
\input{tex/lockScanProcess.tex}
\input{tex/databaseDefinition.tex}
\input{tex/iocInit.tex}
\input{tex/accessSecurity.tex}
\input{tex/test.tex}
\input{tex/errorLogging.tex}
\input{tex/recordSupport.tex}
\input{tex/deviceSupport.tex}
\input{tex/driverSupport.tex}
\input{tex/staticDatabaseAccess.tex}
\input{tex/runtimeDatabaseAccess.tex}
\input{tex/generalPurposeTasks.tex}
\input{tex/scanning.tex}
\input{tex/iocsh.tex}
\input{tex/libCom.tex}
\input{tex/libComOsi.tex}
\input{tex/registry.tex}
\input{tex/databaseStructures.tex}
\ifx \HCode\UnDef
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\fi
\printindex
\end{document}