bibliography_style property

Bibliography.bibliography_style property

Gets or sets a string that represents the name of the active style to use for a bibliography.

@property
def bibliography_style(self) -> str:
    ...

@bibliography_style.setter
def bibliography_style(self, value: str):
    ...

Examples

Shows how to override built-in styles or provide custom one (BibliographyStylesProvider).

class BibliographyStylesProvider(aw.fields.IBibliographyStylesProvider):

    def get_style(self, style_file_name):
        return system_helper.io.File.open_read(MY_DIR + 'Bibliography custom style.xsl')

See Also