Second ParagraphΒΆ
Example
>>> # Create, configure, and run the Text generator
>>> from techminer2.manuscript.introduction.second_paragraph import SecondParagraph
>>> (
... SecondParagraph()
... #
... # TEXT:
... .with_core_area("fintech")
... .with_word_length(300)
... #
... # DATABASE:
... .where_root_directory("examples/fintech/")
... .where_database("main")
... .where_record_years_range(None, None)
... .where_record_citations_range(None, None)
... .where_records_match(None)
... .where_records_ordered_by(None)
... #
... .run()
... )