Skip to content

Commit

Permalink
operators should not be oblique + kerning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sarabander committed Jan 21, 2015
1 parent 1001a91 commit 226b936
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 99 deletions.
17 changes: 14 additions & 3 deletions src/fig/chap2/Fig2.20.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 21 additions & 5 deletions src/fig/chap3/Fig3.29b.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
171 changes: 90 additions & 81 deletions src/fig/chap3/Fig3.33.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 3 additions & 5 deletions src/sicp.tex
Original file line number Diff line number Diff line change
Expand Up @@ -3105,9 +3105,7 @@ \subsection{Tree Recursion}

\end{comment}
\begin{displaymath}
% \eqalign{a &\gets a + b, \cr
% b &\gets a. \cr}
\begin{array}{l@{\quad\gets\quad}l}
\begin{array}{l@{\;\;\gets\;\;}l}
a & a + b, \\
b & a.
\end{array}
Expand Down Expand Up @@ -3303,7 +3301,7 @@ \subsubsection*{Example: Counting change}
the closest integer to \( \varphi^n / \sqrt{5} \), where \( \varphi = (1 +
\sqrt{5}) / 2 \). Hint: Let \( \psi = (1 - \sqrt{5}) / 2 \).
Use induction and the definition of the Fibonacci numbers (see \link{Section 1.2.2})
to prove that Fib(\( n \)) = \( (\varphi^n - \psi^n) / \sqrt{5} \).
to prove that \( \text{Fib}(n) = (\varphi^n - \psi^n) / \sqrt{5} \).
\end{quote}

\subsection{Orders of Growth}
Expand Down Expand Up @@ -20625,7 +20623,7 @@ \subsubsection*{Streams as signals}

\end{comment}
\begin{displaymath}
S_i = C + \sum_{j=1}^i x_j dt
S_i = C + \sum_{j=1}^i x_{\kern-0.07em j} \kern0.1em dt
\end{displaymath}
\noindent
and returns the stream of values \( S = (S_i) \). The following
Expand Down
8 changes: 3 additions & 5 deletions src/sicp.texi
Original file line number Diff line number Diff line change
Expand Up @@ -3133,9 +3133,7 @@ b <- a

@end ifinfo
@tex
% $$\eqalign{a &\gets a + b, \cr
% b &\gets a. \cr}$$
\begin{array}{l@{\quad\gets\quad}l}
\begin{array}{l@{\;\;\gets\;\;}l}
a & a + b, \\
b & a.
\end{array}
Expand Down Expand Up @@ -3331,7 +3329,7 @@ means of a recursive process.
the closest integer to @math{\varphi^n / \sqrt{5}}, where @math{\varphi = (1 +
\sqrt{5}) / 2}. Hint: Let @math{\psi = (1 - \sqrt{5}) / 2}.
Use induction and the definition of the Fibonacci numbers (see @ref{1.2.2})
to prove that Fib(@math{n}) = @math{(\varphi^n - \psi^n) / \sqrt{5}}.
to prove that @math{\text{Fib}(n) = (\varphi^n - \psi^n) / \sqrt{5}}.
@end quotation

@subsection Orders of Growth
Expand Down Expand Up @@ -20939,7 +20937,7 @@ S_i = C + > x_j dt

@end ifinfo
@tex
$$ S_i = C + \sum_{j=1}^i x_j dt $$
$$ S_i = C + \sum_{j=1}^i x_{\kern-0.07em j} \kern0.1em dt $$
@end tex
@noindent
and returns the stream of values @math{S = (S_i)}. The following
Expand Down

0 comments on commit 226b936

Please sign in to comment.