pub enum MatrixStyle {
Show 14 variants
Matrix,
Pmatrix,
Bmatrix,
Vmatrix,
VVmatrix,
BBmatrix,
Cases,
Array,
Aligned,
Align,
Gather,
Multline,
Equation,
Split,
}Expand description
Matrix / alignment environment.
Variants§
Matrix
{matrix}
Pmatrix
{pmatrix}
Bmatrix
{bmatrix}
Vmatrix
{vmatrix}
VVmatrix
{Vmatrix}
BBmatrix
{Bmatrix}
Cases
{cases}
Array
{array}
Aligned
{aligned}
Align
{align}
Gather
{gather}
Multline
{multline}
Equation
{equation}
Split
{split}
Implementations§
Source§impl MatrixStyle
impl MatrixStyle
Sourcepub fn is_display_env(self) -> bool
pub fn is_display_env(self) -> bool
align / gather / multline / equation take display style and numbers.
Sourcepub fn numbers_rows(self) -> bool
pub fn numbers_rows(self) -> bool
Rows are numbered unless \nonumber / \notag / \tag says otherwise.
Sourcepub fn numbers_once(self) -> bool
pub fn numbers_once(self) -> bool
One equation number for the whole environment (last line for multline).
Trait Implementations§
Source§impl Clone for MatrixStyle
impl Clone for MatrixStyle
Source§fn clone(&self) -> MatrixStyle
fn clone(&self) -> MatrixStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MatrixStyle
Source§impl Debug for MatrixStyle
impl Debug for MatrixStyle
impl Eq for MatrixStyle
Source§impl PartialEq for MatrixStyle
impl PartialEq for MatrixStyle
impl StructuralPartialEq for MatrixStyle
Auto Trait Implementations§
impl Freeze for MatrixStyle
impl RefUnwindSafe for MatrixStyle
impl Send for MatrixStyle
impl Sync for MatrixStyle
impl Unpin for MatrixStyle
impl UnsafeUnpin for MatrixStyle
impl UnwindSafe for MatrixStyle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more