Skip to content

Commit

Permalink
Always use \leq and \geq instead of their less common variants
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed Mar 31, 2021
1 parent 6ead7bd commit 44cc953
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion chapters/operatorsandexpressions.tex
Expand Up @@ -806,7 +806,7 @@ \subsubsection{spatialDistribution}\label{spatialdistribution}
\lstinline!spatialDistribution! allows the infinite-dimensional problem below to be solved efficiently with good accuracy
\begin{align*}
\frac{\partial z(y,t)}{\partial t}+v(t)\frac{\partial z(y,t)}{\partial y} &= 0.0\\
z(0.0, t) &= \mathrm{in}_0(t) \text{ if $v\ge 0$}\\
z(0.0, t) &= \mathrm{in}_0(t) \text{ if $v\geq 0$}\\
z(1.0, t) &= \mathrm{in}_1(t) \text{ if $v<0$}
\end{align*}
where $z(y, t)$ is the transported quantity, $y$ is the
Expand Down
12 changes: 4 additions & 8 deletions chapters/overloaded.tex
Expand Up @@ -80,14 +80,11 @@ \section{Matching Function}\label{matching-function}

\begin{itemize}
\item
$A_{i}$ = typeOf($A_{i}$) for 1 $\le$ i $\le$ k,
$A_{i}$ = typeOf($A_{i}$) for $1 \leq i \leq k$,
\item
the names $b_{j}$ = $u_{Qj}$, Qj \textgreater{}
k, $A_{Qj}$ = typeOf($w_{i}$) for 1 $\le$ j $\le$ p, and
the names $b_{j}$ = $u_{\mathit{Qj}}$, $\mathit{Qj} > k$, $A_{\mathit{Qj}}$ = typeOf($w_{i}$) for $1 \leq j \leq p$, and
\item
if the union of \{i: 1 $\le$ i $\le$ k \}, \{Qj: 1 $\le$ j $\le$ p\}, and \{m:
$P_{m}$ \lstinline!true! and 1 $\le$ m $\le$ n \} is the set \{i: 1 $\le$
i $\le$ n\}.
if the union of $\{i: 1 \leq i \leq k \}$, $\{\mathit{Qj}: 1 \leq j \leq p\}$, and $\{m: P_{m} \text{ is \lstinline!true! and } 1 \leq m \leq n \}$ is the set $\{i: 1 \leq i \leq n\}$.
\end{itemize}

\begin{nonnormative}
Expand Down Expand Up @@ -146,8 +143,7 @@ \section{Overloaded Constructors}\label{overloaded-constructors}

\section{Overloaded String Conversions}\label{overloaded-string-conversions}

Consider an expression \lstinline!String($A_1$, $a_{2}$, $\ldots$, $a_{k}$, $b_{1}$=$w_{1}$, $\ldots$, $b_{p}$=$w_{p}$)!,
$k \ge 1$ where $A_1$ is an element of class \lstinline!A!.
Consider an expression \lstinline!String($A_1$, $a_{2}$, $\ldots$, $a_{k}$, $b_{1}$=$w_{1}$, $\ldots$, $b_{p}$=$w_{p}$)!, $k \geq 1$ where $A_1$ is an element of class \lstinline!A!.

\begin{enumerate}
\item
Expand Down

0 comments on commit 44cc953

Please sign in to comment.