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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
% Copyright (C) 2002-2006 Alexei Gilchrist and Paul Cochrane
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License
% as published by the Free Software Foundation; either version 2
% of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; if not, write to the Free Software
% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
% $Id: pyscriptElectronics.tex,v 1.7 2006/06/06 11:33:11 paultcochrane Exp $
\chapter{PyScript Electronics Object Package}
\section{Introduction}
This package is a library of standard symbols as used in electronic circuit
layout and design. Thanks to Adrian Jonstone's lcircuit macros from CTAN
for the ideas and names.
\section{Objects}
\subsection{AND gate}
%%% AND gate
Draws a standard AND gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/AndGate}}
\caption{AndGate object}
\label{fig:and_gate}
\end{figure}
\subsection{NAND gate}
%%% NAND gate
Draws a standard NAND gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/NandGate}}
\caption{NandGate object}
\label{fig:nand_gate}
\end{figure}
\subsection{OR gate}
%%% OR gate
Draws a standard OR gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/OrGate}}
\caption{OrGate object}
\label{fig:or_gate}
\end{figure}
\subsection{NOR gate}
%%% NOR gate
Draws a standard NOR gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/NorGate}}
\caption{NorGate object}
\label{fig:nor_gate}
\end{figure}
\subsection{XOR gate}
%%% XOR gate
Draws a standard XOR gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/XorGate}}
\caption{XorGate object}
\label{fig:Xor_gate}
\end{figure}
\subsection{NXOR gate}
%%% NXOR gate
Draws a standard NXOR gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/NxorGate}}
\caption{NxorGate object}
\label{fig:Nxor_gate}
\end{figure}
\subsection{NOT gate}
%%% NOT gate
Draws a standard NOT gate, with pins extending from the body of the gate.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[height:] The height of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/NotGate}}
\caption{NotGate object}
\label{fig:not_gate}
\end{figure}
\subsection{Resistor}
%%% Resistor
Draws a standard resistor symbol, with pins extending from the body of the
symbol.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[length:] The length of the object.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/Resistor}}
\caption{Resistor object}
\label{fig:resistor}
\end{figure}
\subsection{Capacitor}
%%% Capacitor
Draws a standard capacitor symbol, with pins extending from the body of the
symbol.
Object options:
\begin{description}
\item[width:] The width of the object.
\item[sep:] The separation of the two plates of the capacitor.
\item[angle:] The rotation angle.
\item[pinLength:] The length of the pins extending from the gate.
\item[fg:] The foreground colour. Use the \obj{Color} object to set this
option.
\item[bg:] The background colour. Use the \obj{Color} object to set this
option.
\end{description}
\begin{figure}[h]
\centerline{\includegraphics[height=1cm]{electronics/Capacitor}}
\caption{Capacitor object}
\label{fig:capacitor}
\end{figure}
|