Skip to content

Commit

Permalink
Replace align* with aligned for LaTeX display (JuliaPolyhedra#269)
Browse files Browse the repository at this point in the history
Second wave of LaTeX corrections
  • Loading branch information
gdalle committed Aug 7, 2021
1 parent 0034191 commit 7bc4062
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vecrep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ the intersection of the hyperplanes `hyperplanes` and halfspaces `halfspaces`.
### Examples
For instance, the simplex
```math
\\begin{align*}
\\begin{aligned}
x_1 + x_2 &= 1 \\\\
x_1 &\\geq 0 \\\\
x_2 &\\geq 0
\\end{align*}
\\end{aligned}
```
can be created as follows:
```jldoctest
Expand All @@ -45,11 +45,11 @@ the intersection of the halfspaces `halfspaces`.
### Examples
For instance, the polytope
```math
\\begin{align*}
\\begin{aligned}
x_1 + x_2 &\\leq 1 \\\\
x_1 - x_2 &\\leq 0 \\\\
x_1 & \\geq 0.
\\end{align*}
\\end{aligned}
```
can be created as follows:
```julia
Expand Down

0 comments on commit 7bc4062

Please sign in to comment.