Written Book icon

Written Book Give Command Generator

  • Item id: minecraft:written_book
  • Command: /give

A written book is the signed, sealed form of a book and quill: once a survival player signs one, the title locks, the author stamps to their username, and no anvil or crafting trick reopens it for editing. The /give route skips that ceremony entirely — this generator sets the title, author and generation directly, so the author line can read anything from The Warden to a long-dead king with no account behind it.

Map makers lean on books because they are the densest text delivery vanilla offers. A single item holds up to a hundred pages, drops cleanly into chests and item frames, and reads on a lectern where a comparator reports how far through the pages a reader has flipped — a quiet way to gate a door behind actually finishing the briefing.

The generation field is flavor with one real rule attached: originals and copies of originals duplicate by crafting them with a book and quill, but a copy of a copy is a dead end that refuses further copying. Tag dungeon lore drops as copy_of_copy and they read as scavenged ephemera while also staying scarce on a multiplayer server.

Example commands

Adventure map opening briefing

/give @p minecraft:written_book[written_book_content={title:"Expedition Briefing",author:"The Cartographer",generation:original,pages:["Day 12. The survey team has not reported back from the ravine outpost.","Take the north pass. Bring torches. Do not trust the villager who asks about the key."]}] 1

An original-generation book signed by a fictional author — drop it in the spawn chest so players get objectives without a wall of chat text.

Uncopyable dungeon lore fragment

/give @p minecraft:written_book[lore=["Water-stained and brittle"],written_book_content={title:"Ledger, Third Vault",author:"Unknown",generation:copy_of_copy,pages:["Entry 41: the count is wrong again. Someone is moving the ingots at night.","Entry 44: I hear it under the floor now. I am sealing the vault."]},rarity=rare] 1

Combines copy_of_copy generation with lore text and rare rarity — the tier blocks crafting duplication, keeping the fragment genuinely scarce on a server.

Team handout, sixteen copies

/give @p minecraft:written_book[written_book_content={title:"Arena Rulebook",author:"The Marshal",generation:copy,pages:["Rule one: elytra stay in your locker.","Rule two: the pit is lava. It is always lava."]}] 16

Written books stack to sixteen, so one command fills a dispenser with identical rulebooks for every combatant checking in.

The same build across versions

Rows appear only where the output actually changes -- copy the one that matches your world.

Java 1.16

/give @p minecraft:written_book{display:{Lore:['{"text":"Water-stained and brittle"}']},title:"Ledger, Third Vault",author:"Unknown",generation:2,pages:['{"text":"Entry 41: the count is wrong again. Someone is moving the ingots at night."}','{"text":"Entry 44: I hear it under the floor now. I am sealing the vault."}']} 1

Java 1.21.4

/give @p minecraft:written_book[lore=['{"text":"Water-stained and brittle"}'],written_book_content={title:"Ledger, Third Vault",author:"Unknown",generation:copy_of_copy,pages:['{"text":"Entry 41: the count is wrong again. Someone is moving the ingots at night."}','{"text":"Entry 44: I hear it under the floor now. I am sealing the vault."}']},rarity=rare] 1

Java 26.2

/give @p minecraft:written_book[lore=["Water-stained and brittle"],written_book_content={title:"Ledger, Third Vault",author:"Unknown",generation:copy_of_copy,pages:["Entry 41: the count is wrong again. Someone is moving the ingots at night.","Entry 44: I hear it under the floor now. I am sealing the vault."]},rarity=rare] 1

Bedrock 26.x

# Omitted Java-only item data for Bedrock: lore, rarity, written_book_content.
/give @p written_book 1
  • Omitted Java-only item data for Bedrock: lore, rarity, written_book_content.

Worth knowing

  • Signing a book and quill is one-way: the resulting written book cannot be edited, retitled or re-authored by any survival mechanic.
  • Crafting a written book together with empty book and quills produces copies and bumps the generation one step; a copy of a copy cannot be duplicated again.
  • Written books stack to sixteen while book and quills do not stack at all, which makes signed copies the practical format for handing out duplicates.
  • A comparator behind a lectern outputs a signal that scales with the current page, reaching full strength when the reader turns to the last page.
  • Survival signing caps the title at sixteen characters, a limit command-created books are not bound by.

FAQ

Can a written book be edited after it is signed?

No. Signing permanently locks the pages, title and author. Keep the unsigned book and quill as your master copy if you expect to revise the text later.

What does the generation setting on a written book actually do?

It sets the tooltip tier — Original, Copy of Original or Copy of Copy — and controls copying: the first two duplicate by crafting with a book and quill, while a copy of a copy refuses.

How many pages fit in one book?

One hundred. That ceiling comes from the book and quill editor, and it is a sensible cap for command-built books too since readers turn one page at a time.