Skip to content

Commit

Permalink
Remove asymmetric paragraph break in table
Browse files Browse the repository at this point in the history
Similar sentences in other rows of the table are not written as separate paragraph, so this just makes the treatment equal across the table rows.
  • Loading branch information
henrikt-ma committed Jun 17, 2020
1 parent 59e5204 commit 319b786
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chapters/arrays.tex
Expand Up @@ -314,8 +314,7 @@ \subsection{Specialized Array Constructor Functions}\doublelabel{specialized-arr
Recursive definition:
\lstinline[mathescape=true]!fill(s, $n_{1}$, $n_{2}$, $n_{3}$, $\ldots$)! =
\lstinline[mathescape=true]!fill(fill(s, $n_{2}$, $n_{3}$, $\ldots$), $n_{1}$)!;
\lstinline[mathescape=true]!fill(s, $n$)! = \lstinline[mathescape=true]!{s, s, $\ldots$, s}!

\lstinline[mathescape=true]!fill(s, $n$)! = \lstinline[mathescape=true]!{s, s, $\ldots$, s}!.
The function needs two or more arguments; that is \lstinline!fill(s)! is not legal.\\ \hline
\lstinline[mathescape=true]!linspace($x_{1}$, $x_{2}$, $n$)!
&
Expand Down

0 comments on commit 319b786

Please sign in to comment.