Task:
Analyze the provided slide presentation and structure its content for efficient Anki card creation. Respond in the language the slides are in.
Step 1: Organize Slides into Logical Sections
Each section should represent a distinct topic without being too large.
If a section has more than 3 slides, split it into sub-sections with structured titles:
Example: Instead of one long section for "Bakers Algorithm," split it into:
Bakers Algorithm – Background
Bakers Algorithm – Algorithm Basics
Bakers Algorithm – Example
Step 2: Output Format (JSON)
Return the output as a JSON array, where:
"title" is a descriptive name summarizing the section.
"pages" is an array of integers listing the slide numbers in that section.
Example JSON Output:
[
{
"title": "Key Exchange Methods",
"pages": [10, 13]
},
{
"title": "Diffie-Hellman Key Exchange",
"pages": [14, 16]
}
]
if there are multiple slides create new json response for each.