diff --git a/docs/example_ectd.ipynb b/docs/example_ectd.ipynb index d1e04ab2..ee9c4c24 100644 --- a/docs/example_ectd.ipynb +++ b/docs/example_ectd.ipynb @@ -144,7 +144,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Find Titles using Keywords\n", + "## Find Titles Using Keywords\n", "\n", "Please note that keywords are not case sensitive, but titles are case sensitive. \n", "\n", @@ -184,6 +184,26 @@ "print(\"\\n\".join(ctoc.find_section_given_words(\"REMS\", outfmt='tree')))" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To search multiple keywords:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "vscode": { + "languageId": "plaintext" + } + }, + "outputs": [], + "source": [ + "print(\"\\n\".join(ctoc.find_section_given_words(words=[\"REMS\",\"dsur\"], outfmt='tree')))" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/docs/example_ectd2.ipynb b/docs/example_ectd2.ipynb index 4916ab3f..a5187352 100644 --- a/docs/example_ectd2.ipynb +++ b/docs/example_ectd2.ipynb @@ -145,7 +145,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Find Titles using Keywords\n", + "## Find Titles Using Keywords\n", "\n", "Please note that keywords are not case sensitive, but titles are case sensitive. \n", "\n", @@ -202,7 +202,7 @@ }, "outputs": [], "source": [ - "print(\"\\n\".join(ctoc.find_section_given_words(words=[\"REMS\",\"isE\"], outfmt='tree')))" + "print(\"\\n\".join(ctoc.find_section_given_words(words=[\"REMS\",\"dsur\"], outfmt='tree')))" ] }, {