The style for @proceedings does only show the organization

Issue #111 resolved
Jannik Schürg created an issue

Hi,

BibTeX example:

@Proceedings{tag,
  title     = {Fancy title},
  year      = {2009},
  organization  = {Orgo},
}

If I format this to HTML pybtex only outputs the organization.

The problem is in format_proceedings. Instead of

first_of [
    # [...]
    # there is no editor
    optional_field('organization'),
    sentence [
        self.format_btitle(e, 'title', as_sentence=False),
        self.format_volume_and_series(e, as_sentence=False),
        self.format_address_organization_publisher_date(
            e, include_organization=False),
    ],
],

it should probably be

first_of [
    # [...]
    # there is no editor
    join(' ')[
        sentence [ optional_field('organization') ],
        sentence [
            self.format_btitle(e, 'title', as_sentence=False),
            self.format_volume_and_series(e, as_sentence=False),
            self.format_address_organization_publisher_date(
                e, include_organization=False),
        ],
    ],
],

Comments (6)

  1. Log in to comment