> ## Documentation Index
> Fetch the complete documentation index at: https://usefulai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 4 Best Gemini Cheat Sheets in 2026

export const sheets = [
  {
    "rank": 1,
    "name": "Google Gemini Prompting Guide Analysis",
    "creator": "u/Beginning-Willow-801",
    "url": "https://www.reddit.com/r/promptingmagic/comments/1qo0boz/i_analyzed_googles_entire_70page_gemini_prompting/",
    "image": "/images/cheat-sheets/gemini-review/reddit-guide.jpeg",
    "focus": "Gemini prompting framework",
    "format": "Community infographic",
    "date": "January 2026",
    "rationale": "Best overall. It compresses a long Google prompting guide into a visual framework that is easier to apply than a generic list of example prompts.",
    "description": "The infographic focuses on defining a persona, task, context, format, and constraints, then shows how examples, iteration, and structured output improve Gemini responses. It is the most transferable sheet in the roundup because the method works across research, writing, analysis, and Workspace tasks.",
    "attribution": "Preview from the promptingmagic community on Reddit"
  },
  {
    "rank": 2,
    "name": "Gemini Prompts for Students",
    "creator": "ChromeGeek",
    "url": "https://www.chromegeek.com/google-gemini-prompts-for-students/",
    "image": "/images/cheat-sheets/gemini-review/chromegeek.png",
    "focus": "Studying and assignments",
    "format": "Web sheet with download options",
    "date": "March 2026",
    "rationale": "Best for students. The prompts are organized around real academic tasks rather than broad advice that readers still need to translate themselves.",
    "description": "ChromeGeek groups Gemini prompts for studying, summarizing, writing, research, presentations, planning, and revision. The page is longer than a one-page sheet, but its task-based structure makes it easy for students to find a relevant starting prompt and adapt it.",
    "attribution": "Capture of the student prompt sheet from ChromeGeek"
  },
  {
    "rank": 3,
    "name": "Gemini Quick-Start Cheat Sheet",
    "creator": "Lawrence Technological University",
    "url": "https://ltu.edu/wp-content/uploads/2026/02/Gemini-Quick-Start-Cheat-Sheet.pdf",
    "image": "/images/cheat-sheets/gemini-review/ltu-quick-start.png",
    "focus": "Safe beginner prompting",
    "format": "One-page PDF",
    "date": "February 2026",
    "rationale": "Best printable beginner sheet. It is clear and responsibly framed, but most of its prompting advice is not uniquely Gemini-specific.",
    "description": "LTU uses a simple purpose, audience, tone, and format structure, supported by education examples and reminders about privacy, verification, and academic use. It is the easiest sheet here to print and hand to a new Gemini user.",
    "attribution": "Representative page from Lawrence Technological University's PDF"
  },
  {
    "rank": 4,
    "name": "Gemini Prompts for Bloggers and Content Creators",
    "creator": "ChromeGeek",
    "url": "https://files.oxavi.com/cheat-sheets/google/Gemini-Prompts-for-Content-Creators.pdf",
    "image": "/images/cheat-sheets/gemini-review/oxavi-content-creators.png",
    "focus": "Content planning and writing",
    "format": "Long single-page PDF",
    "date": "June 2025",
    "rationale": "Best for content creators. It offers substantial ready-to-use material, but the extremely tall format behaves more like a prompt catalog than a quick printable sheet.",
    "description": "The PDF collects prompts for ideas, outlines, drafts, editing, headlines, social posts, repurposing, and audience research. Its narrow audience makes the examples more immediately useful than general prompt lists, while the length makes on-screen search more practical than printing.",
    "attribution": "Representative section from ChromeGeek's content-creator PDF"
  }
];

export const otherSheets = [
  {
    "name": "Gemini Keyboard Shortcuts by DefKey",
    "url": "https://defkey.com/gemini-google-ai-shortcuts?filterable=false&pdfOptions=True",
    "description": "a printable list for the small set of Gemini keyboard shortcuts"
  },
  {
    "name": "Google Gemini Cheat Sheet by Rohit Kasbekar",
    "url": "https://www.linkedin.com/posts/rohitkasbekar_gemini-cheatsheet-activity-7447844888358031360-v4IF",
    "description": "a recent visual overview of prompting, models, and Gemini features"
  },
  {
    "name": "Gemini for Google Workspace Prompting Guide",
    "url": "https://workspace.google.com/learning/content/gemini-prompt-guide",
    "description": "Google's official and current source for Workspace-oriented prompting"
  },
  {
    "name": "Gemini Prompting Guide 2026",
    "url": "https://mavgpt.ai/pdfs/Mavericks_Gemini_Prompting_Guide_2026.pdf",
    "description": "a long PDF guide for readers who want more depth than a cheat sheet"
  }
];

export const BestForChip = ({ children }) => (
  <span className="inline-flex min-w-0 max-w-full items-center rounded bg-emerald-50 px-1.5 py-[2px] dark:bg-emerald-500/10">
    <span className="truncate text-xs font-medium leading-4 text-emerald-700 dark:text-emerald-400">{children}</span>
  </span>
);

export const SheetRow = ({ sheet }) => (
  <a href={sheet.url} target="_blank" rel="noreferrer" className="group flex items-center gap-3 px-4 py-3 no-underline transition-colors hover:bg-zinc-50/60 dark:hover:bg-white/[0.02]">
    <span className="w-4 shrink-0 text-center text-sm font-semibold tabular-nums uai-ink-muted">{sheet.rank}</span>
    <img src={sheet.image} alt="" noZoom className="h-11 w-11 shrink-0 rounded-md border border-zinc-200 object-cover dark:border-white/10" />
    <span className="min-w-0 flex-1">
      <span className="flex min-w-0 flex-wrap items-baseline gap-x-1.5">
        <span className="truncate text-sm font-semibold leading-5 uai-ink-strong">{sheet.name}</span>
        <span aria-hidden="true" className="uai-ink-muted">&#8729;</span>
        <span className="text-[13px] leading-5 uai-ink-muted">{sheet.creator}</span>
      </span>
      <span className="block truncate text-[13px] leading-5 uai-ink-body">{sheet.focus}</span>
    </span>
    <span className="mr-1 flex shrink-0 items-center uai-ink-muted"><Icon icon="chevron-right" size={12} color="currentColor" /></span>
  </a>
);

export const SheetList = ({ items }) => (
  <div className="not-prose mb-10 overflow-hidden rounded-xl border border-zinc-200 bg-white dark:border-white/10 dark:bg-white/[0.03]">
    <div className="divide-y divide-zinc-100 dark:divide-white/5">
      {items.map((sheet) => <SheetRow key={sheet.name} sheet={sheet} />)}
    </div>
  </div>
);

export const SheetCard = ({ sheet }) => (
  <section className="not-prose mb-6 rounded-xl border border-zinc-200 bg-white p-5 shadow-sm dark:border-white/10 dark:bg-white/[0.03]">
    <div className="flex min-w-0 flex-wrap items-center gap-x-2 gap-y-1">
      <h2 className="m-0 max-w-full text-xl font-semibold leading-7 tracking-normal">
        <span className="mr-1.5 tabular-nums uai-ink-muted">{sheet.rank}.</span>
        <a href={sheet.url} target="_blank" rel="noreferrer" className="group inline-flex min-w-0 items-center gap-1.5 no-underline uai-ink-strong">
          <span className="min-w-0 break-words underline-offset-4 group-hover:underline">{sheet.name}</span>
          <span aria-hidden="true" className="flex shrink-0 text-zinc-400 transition-colors group-hover:text-zinc-900 dark:text-zinc-500 dark:group-hover:text-white"><Icon icon="arrow-up-right" size={12} color="currentColor" /></span>
        </a>
      </h2>
      <BestForChip>{sheet.focus}</BestForChip>
    </div>

    <div className="mt-1 flex flex-wrap items-center gap-x-2 text-[13px] leading-5 uai-ink-muted">
      <span>{sheet.date}</span>
      <span aria-hidden="true">&#8729;</span>
      <span>{sheet.creator}</span>
      <span aria-hidden="true">&#8729;</span>
      <span>{sheet.format}</span>
    </div>

    <div className="mt-4 text-sm leading-[22px] uai-ink-body">
      <div className="font-medium uai-ink-strong">{sheet.rationale}</div>
      <div className="mt-3">{sheet.description}</div>
    </div>

    <figure className="mt-5">
      <a href={sheet.url} target="_blank" rel="noreferrer" aria-label={`Open ${sheet.name} by ${sheet.creator}`} className="flex max-h-[520px] w-full items-center justify-center overflow-hidden rounded-lg border border-zinc-200 bg-zinc-50 no-underline dark:border-white/10 dark:bg-black/20">
        <img src={sheet.image} alt={`${sheet.name} by ${sheet.creator}`} noZoom className="max-h-[520px] w-full object-contain" />
      </a>
      <figcaption className="mt-2 text-xs uai-ink-muted">{sheet.attribution}</figcaption>
    </figure>
  </section>
);

export const OtherSheetLine = ({ sheet }) => (
  <li className="flex items-baseline gap-2.5 text-sm leading-[22px] uai-ink-body">
    <span aria-hidden="true" className="relative -top-0.5 inline-block h-1.5 w-1.5 shrink-0 rounded-full bg-zinc-300 dark:bg-zinc-600" />
    <span><a href={sheet.url} target="_blank" rel="noreferrer" className="font-medium uai-ink-strong underline underline-offset-2">{sheet.name}</a>: {sheet.description}.</span>
  </li>
);

<div className="not-prose -mt-5 mb-8 flex flex-wrap items-center gap-x-2 text-sm uai-ink-body" style={{ paddingLeft: "2px" }}>
  <span className="inline-flex items-center gap-1.5"><Icon icon="clock-rotate-left" size={10} color="currentColor" /> Updated <time dateTime="2026-07-12">July 12, 2026</time></span>
</div>

The strongest Gemini cheat sheets are audience-specific. General prompting guidance helps most readers, while student and creator sheets become more useful when their examples match the work you actually do.

This ranking prioritizes what readers can use today: practical value, clarity, currentness, and format. Popularity helped identify candidates, but it does not determine the final order.

## Best Gemini Cheat Sheets

<SheetList items={sheets} />

{sheets.map((sheet) => <SheetCard key={sheet.name} sheet={sheet} />)}

***

## Other Gemini Cheat Sheets to Consider

<ul className="not-prose m-0 my-4 flex list-none flex-col gap-2 p-0">
  {otherSheets.map((sheet) => <OtherSheetLine key={sheet.name} sheet={sheet} />)}
</ul>

***

## Frequently Asked Questions

<AccordionGroup>
  <Accordion title="What is the best Gemini cheat sheet?">
    The community analysis of Google's long prompting guide is the best general option because it turns Gemini prompting into a reusable framework. ChromeGeek is the better choice for students, while LTU provides the cleanest one-page printable.
  </Accordion>

  <Accordion title="Which Gemini cheat sheet is best for students?">
    ChromeGeek offers the broadest collection of student tasks and example prompts. LTU is shorter, easier to print, and includes useful reminders about privacy, verification, and responsible academic use.
  </Accordion>

  <Accordion title="Are Gemini cheat sheets different from general prompt guides?">
    The best Gemini sheets connect general prompting principles to Gemini-specific use cases such as Workspace, long documents, study tasks, or content creation. Basic role, task, context, and format advice transfers to other models.
  </Accordion>

  <Accordion title="How current do Gemini cheat sheets need to be?">
    Prompt structures age slowly, but model names, feature lists, interface steps, and Workspace integrations can change quickly. Verify those details against Google's current documentation.
  </Accordion>
</AccordionGroup>
