Editing
Narrative Theory
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Narrative Theory, also known as Narratology, is the study of how stories are structured, told, and understood. It examines the internal mechanisms of a storyβsuch as plot, character, perspective, and timeβto reveal how they work together to create meaning and emotional impact. Narrative theory is not just for literature; it applies to movies, video games, history, and even the way we tell stories about our own lives. By understanding the "grammar" of storytelling, we can see why some narratives feel satisfying and "true," while others feel disjointed or manipulative. </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Narrative Theory''' β The study of narrative structure and the ways in which it affects our perception. * '''Plot''' β The sequence of events in a story. * '''Character''' β A person, animal, or being in a story. * '''Narrator''' β The voice or character telling the story. * '''Point of View (POV)''' β The perspective from which a story is told (First, Second, or Third person). * '''Protagonist''' β The main character who drives the story forward. * '''Antagonist''' β The character or force that opposes the protagonist. * '''Conflict''' β The struggle between opposing forces (Man vs. Man, Man vs. Nature, Man vs. Self). * '''Climax''' β The point of highest tension or drama in a story. * '''Setting''' β The time and place in which a story occurs. * '''Theme''' β The underlying message or "big idea" of a story. * '''Symbolism''' β The use of objects, characters, or events to represent something else. * '''Foreshadowing''' β Hints or clues about what will happen later in the story. * '''Dialogue''' β The spoken exchange between characters. * '''Arc''' β The transformation or journey of a character or plot over time. </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == Narrative theory is built on the distinction between '''Story''' and '''Discourse'''. '''1. Story (Fabula)''': The raw events as they happened in chronological order (e.g., A was born, A grew up, A died). '''2. Discourse (Sjuzet)''': How those events are actually presented to the reader (e.g., starting the book with A's death, then using flashbacks to show their childhood). '''Common Structural Models''': * '''The Hero's Journey (Joseph Campbell)''': A universal pattern where a hero leaves home, faces trials, gains wisdom, and returns to transform their world. * '''The Three-Act Structure''': * '''Act I: Setup''': Introducing the world and the "Inciting Incident." * '''Act II: Confrontation''': The hero faces obstacles and stakes are raised. * '''Act III: Resolution''': The final battle and the "new normal." '''The Power of the Narrator''': * '''Reliable Narrator''': We can trust what they say. * '''Unreliable Narrator''': They might be lying, crazy, or biased (e.g., ''The Murder of Roger Ackroyd''). Narrative theory shows that ''who'' is telling the story is often more important than ''what'' is happening. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Hero's Journey' Progress:''' <syntaxhighlight lang="python"> def check_hero_progress(current_stage): """ Based on Campbell's Monomyth. """ stages = [ "Call to Adventure", "Refusal of the Call", "Meeting the Mentor", "Crossing the Threshold", "Tests, Allies, Enemies", "The Ordeal", "The Reward", "The Road Back", "Resurrection", "Return with Elixir" ] if current_stage in stages: idx = stages.index(current_stage) progress = (idx + 1) / len(stages) * 100 next_step = stages[idx+1] if idx+1 < len(stages) else "Journey Complete" return f"Progress: {progress:.0f}% | Next: {next_step}" return "Stage not found." # A hero who just met their mentor print(check_hero_progress("Meeting the Mentor")) # This structure is the 'hidden blueprint' for almost # every Hollywood blockbuster. </syntaxhighlight> ; Narrative Masterpieces : '''The Odyssey (Homer)''' β The foundational "Journey" narrative of Western literature. : '''Rashomon (RyΕ«nosuke Akutagawa / Kurosawa)''' β A story told from four conflicting perspectives, demonstrating narrative unreliability. : '''One Hundred Years of Solitude (Marquez)''' β A masterpiece of "Magical Realism" that plays with linear time. : '''The Witcher / RPGs''' β Modern examples of "Branching Narratives" where the player's choices change the discourse. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Narrative Perspectives ! POV !! Description !! Advantage !! Disadvantage |- | 1st Person (I) || Character is the narrator || Deep intimacy / Emotion || Limited perspective / Unreliable |- | 3rd Person Limited || Narrator knows one character's thoughts || Focus / Mystery || Can't see the "Big Picture" |- | 3rd Person Omniscient || Narrator knows everything || God-like overview || Can feel distant or "too easy" |} '''The Concept of 'Show, Don't Tell'''': This is a fundamental rule of narrative discourse. Instead of telling the reader "He was angry," you show the reader "He slammed the door and his knuckles turned white." Analyzing how a writer "shows" vs. "tells" is a key task of narratology. </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating a narrative: # '''Consistency''': Do the characters act in ways that match their established personality (unless they are growing)? # '''Pacing''': Does the story move too fast (confusing) or too slow (boring)? # '''Thematic Resonance''': Do the events of the plot actually support the "Theme" of the book? # '''Emotional Truth''': Even if the story is about dragons or space, does the human emotion feel real and earned? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''Procedural Storytelling''': AI systems that can generate infinite, coherent narratives that adapt to a user's interests in real-time. # '''Immersive Narrative''': Storytelling in VR where the "Reader" is physically inside the setting. # '''Transmedia Storytelling''': A single narrative spread across books, movies, games, and social media (e.g., the Marvel Cinematic Universe). # '''Meta-Narratives''': Stories that are ''about'' the act of storytelling itself (e.g., ''Community'' or ''Don Quixote''). [[Category:Literature]] [[Category:Writing]] [[Category:Media Studies]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information