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