Skip to content

Commit

Permalink
Add space around '=' in listing
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikt-ma committed May 6, 2021
1 parent 65ff2d2 commit 1f34dee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chapters/functions.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1368,10 +1368,10 @@ \subsection{Using the Derivative Annotation}\label{using-the-derivative-annotati
end setState_ph_der;

ThermodynamicState state1 = setState_ph(p=$\ldots$, h=$\ldots$, phase=$\ldots$);
Density rho1=density(state1);
DensityDerivative d_rho1=der(rho1);
Density rho2=density(setState_ph(p=$\ldots$, h=$\ldots$, phase=$\ldots$));
DensityDerivative d_rho2=der(rho2);
Density rho1 = density(state1);
DensityDerivative d_rho1 = der(rho1);
Density rho2 = density(setState_ph(p=$\ldots$, h=$\ldots$, phase=$\ldots$));
DensityDerivative d_rho2 = der(rho2);
\end{lstlisting}
\end{example}

Expand Down

0 comments on commit 1f34dee

Please sign in to comment.