[][src]Struct bookbinder_latex::OptionsWithRenderedPreamble

pub struct OptionsWithRenderedPreamble { /* fields omitted */ }

Options with a prerendered preamble; normally derived from PreambleOptions.

Implementations

impl OptionsWithRenderedPreamble[src]

Set the logo of a publisher to use on the titlepage

pub fn suppress_chapter_titles(&mut self) -> &mut Self[src]

Do not show any given chapter's title -- rely instead on its label. For example, Chapter 1: Wolves Attack! would be represented as Chapter 1

pub fn suppress_chapter_label(&mut self) -> &mut Self[src]

Do not label chapters as such in headings; i.e. use only the chapter title. For example, Chapter 1: Wolves Attack! would be represented as Wolves Attack!

pub fn only_number_chapters(&mut self) -> &mut Self[src]

Indicate chapters only by using a numerical indication, in whatever format. For example, Chapter 1: Wolves Attack! would be represented as 1, or I if use_roman_numerals_for_chapter_labels was called

pub fn include_toc(&mut self) -> &mut Self[src]

Include a table of contents

pub fn set_secnumdepth(&mut self, secnumdepth: LatexSecNumDepth) -> &mut Self[src]

Set the secnumdepth

Trait Implementations

impl Clone for OptionsWithRenderedPreamble[src]

impl Debug for OptionsWithRenderedPreamble[src]

impl Default for OptionsWithRenderedPreamble[src]

impl From<PreambleOptions> for OptionsWithRenderedPreamble[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,