Books in Different Formats, Same Subject

November 5, 2026 · Part 14 of 20

Opening Scene

A well-stocked library doesn’t hold only plain prose. It holds maps, photographs, tables of statistics, technical diagrams — genuinely different formats, all potentially relevant to the exact same underlying subject, each requiring a slightly different approach to actually catalog and retrieve well. A RAG system built to search only plain text runs into the same real limitation the moment its knowledge source includes anything beyond uniform prose — which, in most real organizations, is nearly always the case.

In Plain English

Multimodal and structured retrieval extends RAG beyond plain text to handle tables, images, and structured data formats. This typically involves specialized preprocessing — extracting and describing table contents in a retrievable text form, using multimodal embedding models that can represent both images and text in a shared vector space, or preserving structured metadata alongside a chunk to support more precise filtering. Real organizational knowledge is rarely uniform plain text, making this a genuinely common, practical challenge, not a specialized edge case.

The Old Way

Before multimodal and structured retrieval techniques matured, RAG systems were often effectively limited to plain text content:

  • Early RAG implementations frequently ignored or poorly handled tables, treating them as unstructured, hard-to-parse text rather than genuinely structured data.
  • Images and diagrams were often excluded from RAG knowledge sources entirely, since text-only embedding models had no way to represent visual content meaningfully.
  • This left significant portions of many organizations’ real knowledge bases — technical documentation full of diagrams, financial reports full of tables — effectively inaccessible to a text-only RAG system.

Multimodal embedding models and structured content extraction techniques emerged specifically to close this real, practical gap.

What’s Changing (and Why AI Is the Reason)

  1. Multimodal embedding models, connecting directly to this content library’s dedicated multimodal AI series, can now represent both text and images in a shared vector space, enabling genuine cross-modal retrieval.
  2. Specialized table extraction and description techniques let tabular data be meaningfully represented and retrieved as part of a RAG system, rather than being ignored or poorly parsed.
  3. As organizations increasingly want RAG systems that genuinely reflect their full, real knowledge base — not just the plain-text subset — multimodal and structured retrieval has moved from a specialized capability to an increasingly standard requirement.

The Metaphor, Fully Extended

The LibraryMultimodal Retrieval Concept
Maps, photographs, and tables alongside plain prose in the collectionImages, tables, and structured data alongside plain text in the knowledge source
A cataloger who’s learned how to properly catalog each different formatA retrieval system using specialized techniques for each different content type
A patron able to find a relevant map or chart, not just relevant proseA user able to retrieve relevant tables or images, not just relevant text
A library that reflects its genuinely full, real collectionA RAG system that reflects an organization’s genuinely full, real knowledge base

For Beginners: What to Actually Do

  • Learn the basic idea behind multimodal embeddings, representing both text and images in a shared vector space.
  • Practice extracting and describing a table’s contents in text form, as a simple, practical technique for making tabular data retrievable.
  • Recognize that a text-only RAG approach likely misses significant portions of any real organization’s actual knowledge base.

For Practitioners and Leaders: The Deeper Layer

  • Audit your organization’s actual knowledge sources for non-text content — tables, diagrams, images — before assuming a text-only RAG approach is sufficient.
  • Invest in multimodal embedding models and structured content extraction where your knowledge base genuinely includes significant non-text material.
  • Connect this work directly to this content library’s dedicated multimodal AI series for a deeper treatment of the underlying technology.

Quick Recap

  • Multimodal and structured retrieval extends RAG beyond plain text to handle tables, images, and structured data.
  • Real organizational knowledge is rarely uniform plain text, making this a common, practical challenge.
  • Multimodal embedding models and specialized extraction techniques address this gap directly.
  • This has moved from a specialized capability to an increasingly standard requirement for genuinely useful RAG systems.

Where This Fits in the Series

Article 14 covered retrieving beyond plain text. Article 15 covers a more involved kind of research task: questions that need more than a single, simple lookup.