def new(self, **kwargs):
        r'''Create new output-burnished talea rhythm-maker with `kwargs`:

        ::

            >>> new_maker = maker.new(secondary_divisions=[10])

        ::

            >>> print new_maker.storage_format
            rhythmmakertools.OutputBurnishedTaleaRhythmMaker(
                talea=[1, 2, 3],
                talea_denominator=16,
                prolation_addenda=[0, 2],
                lefts=[-1],
                middles=[0],
                rights=[-1],
                left_lengths=[1],
                right_lengths=[1],
                secondary_divisions=[10],
                beam_each_cell=True,
                beam_cells_together=False,
                decrease_durations_monotonically=True,
                tie_split_notes=False,
                tie_rests=False
                )

        ::

            >>> divisions = [(3, 8), (4, 8)]
            >>> music = new_maker(divisions)
            >>> music = sequencetools.flatten_sequence(music)
            >>> measures = \
            ...     measuretools.make_measures_with_full_measure_spacer_skips(
            ...     divisions)
            >>> staff = stafftools.RhythmicStaff(measures)
            >>> measures = measuretools.replace_contents_of_measures_in_expr(
            ...     staff, music)

        ::

            >>> show(staff) # doctest: +SKIP

        Returns new output-burnished talea rhythm-maker.
        '''
        return BurnishedRhythmMaker.new(self, **kwargs)