Uses modern Minecraft item component syntax (1.20.5+). On older versions these need the legacy NBT tag format instead.

How to Use the Written Book Generator

  1. Pick a target selector (defaults to @p, the nearest player).
  2. Type a title and author name.
  3. Type the text for page 1 (required) and page 2 (optional).
  4. Copy the generated /give command.

Syntax Reference

A written book carries a written_book_content item component with title, author, and a pages list:

/give @p minecraft:written_book[written_book_content={title:"Title",author:"Author",pages:["Page 1","Page 2"]}]

Each entry in pages is one page of text, rendered left-to-right in the book’s reading order. Since 1.20.5, plain strings in the pages list are treated as literal text by default (no JSON-text formatting needed for simple cases), though the game also accepts full JSON-text objects per page if you need color or click events. Titles are capped at 32 characters and each page has both a character limit and a max page count enforced by the game (writable books cap at 100 pages; a written book locks in whatever a writable book already had once signed).

Frequently Asked Questions

How is a written book normally created survival-side?

You write pages into a Book and Quill (writable book) at a lectern or by holding it, then “sign” it – which locks the text permanently, adds the title and your name as author, and converts it into a written book. This generator skips that step and gives you the finished, already-signed item.

Can a written book be edited after being given by this command?

No – a written book is permanently locked/signed by design; you cannot add, remove, or edit its pages once it exists as a written book, only a writable Book and Quill can still be edited. If you need editable text, give a plain minecraft:writable_book instead and write it manually in-game.

Does a written book’s author have any real ownership meaning?

No – the author field is just display text shown in the book’s UI and tooltip; it doesn’t need to match an actual player name or account, and setting it via this generator has no functional effect beyond what’s shown when reading or holding the book.

Can I put more than 2 pages in a written book?

Yes – the underlying pages component accepts as many entries as the game’s page-count cap allows (up to 100). This generator’s UI exposes 2 pages for simplicity; add more entries manually to the pages array in the command if you need a longer book.

Related Tools