The handbook/Claude Code Cheat Sheets: Search Commands and Prompts
SettingsMy workspaceOfficial docs ↗

Quick reference

Find the right
instruction.

Search commands, browser actions, Git steps, and reusable prompts. Every example explains where it belongs and what to check.

QUICK REFERENCESearchable • Printable • Checked September 24, 2026

143 entries across six sections.

Read the location label first

Shell commands go in your computer’s terminal. Slash commands go inside a supported Claude Code session. Browser prompts go in the conversation. Availability varies by interface, release, plan, and installed tools. Angle brackets indicate required arguments; square brackets indicate optional ones. Replace placeholders before using them.

Browser

Start a browser task

Select a practice repository and the intended base branch first.

Claude Code browser conversation
Read this repository and explain it in plain English. Do not edit yet.

Before using it: Ask for a short map of the files before requesting changes.

Read the full explanation

Request a plan

Use when the project or change is unfamiliar.

Claude Code browser conversation
Inspect the current repository. Propose a focused plan and checks. Stop before editing.

Before using it: Select the matching permission mode too; a prompt is not an access control.

Read the full explanation

Approve one change

Use after you understand the proposed scope.

Claude Code browser conversation
Implement only the plan I approved. Run the relevant checks and explain the result.

Before using it: Approval to edit does not automatically authorize merging or deploying.

Read the full explanation

Review the result

Use before accepting a completed task.

Claude Code browser conversation
Explain the diff, the checks actually run, and anything still unverified.

Before using it: Look at the actual changed files and try the affected behavior yourself.

Read the full explanation

Continue a web task

Keeps your follow-up with the task and its history.

Interface action: Open claude.ai/code and select the existing task in the sidebar.

Before using it: Your computer’s files do not automatically appear in the cloud workspace.

Read the full explanation

Browser command unavailable

Use when the web input does not offer a slash command.

Interface action: Describe the outcome in ordinary language.

Before using it: The terminal command catalog is not a promise of browser availability.

Read the full explanation

Terminal

Start Claude Code

Open a conversation in the current project folder.

Operating-system terminal, in the project folder
claude

Before using it: Confirm the directory before starting.

Read the full explanation

Start in Plan mode

Discuss a change before implementation.

Operating-system terminal, in the project folder
claude --permission-mode plan

Before using it: Review the plan before allowing edits.

Read the full explanation

Continue latest session

Continue the most recent conversation in this directory.

Operating-system terminal, in the project folder
claude --continue

Before using it: Use resume to choose a different saved session.

Read the full explanation

Choose a saved session

Open the saved-session picker.

Operating-system terminal, in the project folder
claude --resume

Before using it: Check the project and selected conversation.

Read the full explanation

Check version

Identify the installed release.

Operating-system terminal, in the project folder
claude --version

Before using it: Command availability can differ by release.

Read the full explanation

Read CLI help

Inspect the supported launch options.

Operating-system terminal, in the project folder
claude --help

Before using it: Type this outside the Claude conversation.

Read the full explanation

Diagnose installation

Check the installation and configuration.

Operating-system terminal, in the project folder
claude doctor

Before using it: Read-only report. Use /doctor inside a session for proposed fixes.

Read the full explanation

Print one response

Get an answer in terminal output without an interactive conversation.

Operating-system terminal, in the project folder
claude -p "Explain this project. Do not edit files."

Before using it: Tool permissions still apply; this is not a read-only security boundary.

Read the full explanation

Choose a model

Start with an available model alias.

Operating-system terminal, in the project folder
claude --model sonnet

Before using it: Availability and usage depend on the account.

Read the full explanation

Slash commands

/help

Discover available commands.

Inside a supported Claude Code terminal session
/help

Before using it: Type this when you need the command menu.

Read the full explanation

/plan [task]

Plan before implementing.

Inside a supported Claude Code terminal session
/plan explain how this practice repository works

Before using it: Try /plan add a contact form

Read the full explanation

/init

Draft project instructions.

Inside a supported Claude Code terminal session
/init

Before using it: Creates CLAUDE.md; review its contents.

Read the full explanation

/diff

Inspect working-tree changes.

Inside a supported Claude Code terminal session
/diff

Before using it: Read the actual edits before accepting them.

Read the full explanation

/status

Inspect account and session.

Inside a supported Claude Code terminal session
/status

Before using it: Check version, model, and authentication.

Read the full explanation

/usage

Inspect usage and costs.

Inside a supported Claude Code terminal session
/usage

Before using it: Aliases: /cost and /stats. Check before a large task.

Read the full explanation

/permissions

Configure tool approvals.

Inside a supported Claude Code terminal session
/permissions

Before using it: Review allow, ask, and deny rules.

Read the full explanation

/exit

Leave the session.

Inside a supported Claude Code terminal session
/exit

Before using it: An attached background session continues running.

Read the full explanation

/clear [name]

Begin with empty context.

Inside a supported Claude Code terminal session
/clear

Before using it: Aliases: /reset, /new. Files stay.

Read the full explanation

/compact [focus]

Summarize current context.

Inside a supported Claude Code terminal session
/compact

Before using it: Example: /compact keep the test failures

Read the full explanation

/context [all]

Inspect context consumption.

Inside a supported Claude Code terminal session
/context

Before using it: See what is occupying the context window.

Read the full explanation

/autocompact [auto|tokens]

Adjust compaction threshold.

Inside a supported Claude Code terminal session
/autocompact

Before using it: Use auto unless you need custom tuning.

Read the full explanation

/resume [session]

Reopen a conversation.

Inside a supported Claude Code terminal session
/resume

Before using it: Alias: /continue.

Read the full explanation

/rename [name]

Name this session.

Inside a supported Claude Code terminal session
/rename

Before using it: Example: /rename website-practice

Read the full explanation

/recap

Summarize this session.

Inside a supported Claude Code terminal session
/recap

Before using it: A quick reorientation.

Read the full explanation

/branch [name]

Try a conversation branch.

Inside a supported Claude Code terminal session
/branch

Before using it: Separate from a Git branch.

Read the full explanation

/rewind

Restore a checkpoint.

Inside a supported Claude Code terminal session
/rewind

Before using it: Aliases: /checkpoint, /undo. Not a full-system backup.

Read the full explanation

/btw [question]

Ask a side question.

Inside a supported Claude Code terminal session
/btw

Before using it: Useful for a quick explanation.

Read the full explanation

/copy [N]

Copy an earlier response.

Inside a supported Claude Code terminal session
/copy

Before using it: Optional N selects an earlier answer.

Read the full explanation

/export [filename]

Save conversation text.

Inside a supported Claude Code terminal session
/export

Before using it: Inspect for secrets before sharing.

Read the full explanation

/add-dir <path>

Allow another working directory.

Inside a supported Claude Code terminal session
/add-dir .

Before using it: Expands file access.

Read the full explanation

/cd <path>

Change session working directory.

Inside a supported Claude Code terminal session
/cd .

Before using it: Keeps the conversation.

Read the full explanation

/code-review [level] [target]

Review code for bugs.

Inside a supported Claude Code terminal session
/code-review

Before using it: Optional --fix edits; --comment posts. /review is an alias.

Read the full explanation

/code-review ultra

Run a cloud review.

Inside a supported Claude Code terminal session
/code-review ultra

Before using it: Alias: /ultrareview. Eligibility and extra usage may apply.

Read the full explanation

/security-review

Inspect branch security risks.

Inside a supported Claude Code terminal session
/security-review

Before using it: Needs an origin remote; findings are not a guarantee.

Read the full explanation

/simplify [target]

Review and apply cleanup.

Inside a supported Claude Code terminal session
/simplify

Before using it: Can edit files; different purpose from correctness review.

Read the full explanation

/run

Launch and exercise an app.

Inside a supported Claude Code terminal session
/run

Before using it: Bundled skill; needs suitable tools.

Read the full explanation

/verify

Observe whether changes work.

Inside a supported Claude Code terminal session
/verify

Before using it: Bundled skill; requires explicit invocation.

Read the full explanation

/run-skill-generator

Write app verification instructions.

Inside a supported Claude Code terminal session
/run-skill-generator

Before using it: Creates a reusable project recipe.

Read the full explanation

/debug [problem]

Investigate runtime problems.

Inside a supported Claude Code terminal session
/debug

Before using it: Starts debug logging from this point.

Read the full explanation

/doctor

Diagnose setup and propose repairs.

Inside a supported Claude Code terminal session
/doctor

Before using it: Review proposed changes before accepting.

Read the full explanation

/goal [condition|clear]

Continue toward a goal.

Inside a supported Claude Code terminal session
/goal

Before using it: Use measurable criteria and monitor usage.

Read the full explanation

/model [model]

Select a model.

Inside a supported Claude Code terminal session
/model

Before using it: Available models depend on the account.

Read the full explanation

/effort [level|auto|status]

Set reasoning effort.

Inside a supported Claude Code terminal session
/effort

Before using it: Supported levels depend on the model/version.

Read the full explanation

/advisor [model|off]

Consult another model.

Inside a supported Claude Code terminal session
/advisor

Before using it: Advanced; adds model usage.

Read the full explanation

/fast [on|off]

Toggle fast mode.

Inside a supported Claude Code terminal session
/fast

Before using it: Check eligibility and billing first.

Read the full explanation

/output-style [style]

Change response presentation.

Inside a supported Claude Code terminal session
/output-style

Before using it: Example: /output-style concise

Read the full explanation

/config [key=value]

Change session settings.

Inside a supported Claude Code terminal session
/config

Before using it: Alias: /settings.

Read the full explanation

/login

Sign in.

Inside a supported Claude Code terminal session
/login

Before using it: Choose the correct billing account.

Read the full explanation

/logout

Sign out.

Inside a supported Claude Code terminal session
/logout

Before using it: Does not revoke every external credential.

Read the full explanation

/privacy-settings

Inspect privacy choices.

Inside a supported Claude Code terminal session
/privacy-settings

Before using it: Available for eligible Pro/Max subscribers.

Read the full explanation

/rate-limit-options

Inspect options after limits.

Inside a supported Claude Code terminal session
/rate-limit-options

Before using it: Some choices can incur additional charges.

Read the full explanation

/usage-credits

Manage additional usage.

Inside a supported Claude Code terminal session
/usage-credits

Before using it: Formerly /extra-usage.

Read the full explanation

/upgrade

Open plan upgrades.

Inside a supported Claude Code terminal session
/upgrade

Before using it: Does not appear for every plan.

Read the full explanation

/memory

Manage instructions and memory.

Inside a supported Claude Code terminal session
/memory

Before using it: Review what Claude retains for later.

Read the full explanation

/skills

Manage available skills.

Inside a supported Claude Code terminal session
/skills

Before using it: Skills can contain executable workflows.

Read the full explanation

/reload-skills

Refresh skill discovery.

Inside a supported Claude Code terminal session
/reload-skills

Before using it: After creating or editing a skill.

Read the full explanation

/skill-doctor

Inspect skill overhead.

Inside a supported Claude Code terminal session
/skill-doctor

Before using it: Version and feature availability apply.

Read the full explanation

/plugin [subcommand]

Manage installed plugins.

Inside a supported Claude Code terminal session
/plugin

Before using it: Inspect the publisher before installation.

Read the full explanation

/reload-plugins

Apply plugin changes.

Inside a supported Claude Code terminal session
/reload-plugins

Before using it: Read any reload warnings.

Read the full explanation

/mcp

Manage connected MCP servers.

Inside a supported Claude Code terminal session
/mcp

Before using it: Includes authentication and connection state.

Read the full explanation

/hooks

Inspect configured hooks.

Inside a supported Claude Code terminal session
/hooks

Before using it: Hooks can execute commands.

Read the full explanation

/update-config [request]

Edit configuration through Claude.

Inside a supported Claude Code terminal session
/update-config

Before using it: Check the resulting settings diff.

Read the full explanation

/import [source] --dry-run

Preview configuration migration.

Inside a supported Claude Code terminal session
/import --dry-run

Before using it: Sources include codex, gemini, and cursor.

Read the full explanation

/agents

Get subagent management guidance.

Inside a supported Claude Code terminal session
/agents

Before using it: Current versions direct you to prompts or agent files.

Read the full explanation

/claude-api [subcommand]

Load API development guidance.

Inside a supported Claude Code terminal session
/claude-api

Before using it: Covers API projects, migration, evals, and cost work.

Read the full explanation

/workflow-authoring

Load dynamic workflow guidance.

Inside a supported Claude Code terminal session
/workflow-authoring

Before using it: Only when the feature is enabled.

Read the full explanation

/background [task]

Detach into background execution.

Inside a supported Claude Code terminal session
/background

Before using it: Alias: /bg.

Read the full explanation

/fork [task]

Copy into another background session.

Inside a supported Claude Code terminal session
/fork

Before using it: Behavior differs on older versions.

Read the full explanation

/subtask <task>

Delegate a side task.

Inside a supported Claude Code terminal session
/subtask explain the README

Before using it: Result returns to the current conversation.

Read the full explanation

/tasks

Inspect current background work.

Inside a supported Claude Code terminal session
/tasks

Before using it: Alias: /bashes.

Read the full explanation

/list-agents

List reachable peer sessions.

Inside a supported Claude Code terminal session
/list-agents

Before using it: Alias: /peers; messaging must be enabled.

Read the full explanation

/stop

Stop an attached background session.

Inside a supported Claude Code terminal session
/stop

Before using it: Use in background sessions, not as a universal stop command.

Read the full explanation

/batch <task>

Coordinate many worktree changes.

Inside a supported Claude Code terminal session
/batch explain the README

Before using it: Advanced bundled skill; can open multiple PRs.

Read the full explanation

/loop [interval] [task]

Repeat work in this session.

Inside a supported Claude Code terminal session
/loop

Before using it: Session must stay open; alias /proactive.

Read the full explanation

/schedule [description]

Manage cloud routines.

Inside a supported Claude Code terminal session
/schedule

Before using it: Alias: /routines; eligible subscription required.

Read the full explanation

/autofix-pr [instructions]

Watch and fix a PR.

Inside a supported Claude Code terminal session
/autofix-pr

Before using it: Can push commits; requires gh and cloud access.

Read the full explanation

/remote-control

Connect to this local session remotely.

Inside a supported Claude Code terminal session
/remote-control

Before using it: Alias: /rc; eligible subscription required.

Read the full explanation

/teleport

Bring a cloud session local.

Inside a supported Claude Code terminal session
/teleport

Before using it: Alias: /tp.

Read the full explanation

/remote-env

Select a cloud environment.

Inside a supported Claude Code terminal session
/remote-env

Before using it: For cloud sessions dispatched from the CLI.

Read the full explanation

/web-setup

Connect cloud GitHub access.

Inside a supported Claude Code terminal session
/web-setup

Before using it: Can send your local gh token to Anthropic after confirmation.

Read the full explanation

/install-github-app

Set up GitHub integration.

Inside a supported Claude Code terminal session
/install-github-app

Before using it: May create secrets and propose workflow changes.

Read the full explanation

/install-slack-app

Set up Slack integration.

Inside a supported Claude Code terminal session
/install-slack-app

Before using it: Opens an external authorization flow.

Read the full explanation

/workflows

Inspect dynamic workflow progress.

Inside a supported Claude Code terminal session
/workflows

Before using it: When dynamic workflows are available.

Read the full explanation

/deep-research <question>

Research with sources.

Inside a supported Claude Code terminal session
/deep-research What does this repository do?

Before using it: Explicitly invoked workflow; verify citations.

Read the full explanation

/dataviz [request]

Guide chart creation.

Inside a supported Claude Code terminal session
/dataviz

Before using it: Provide actual data and the intended comparison.

Read the full explanation

/design [brief]

Create editable design artboards.

Inside a supported Claude Code terminal session
/design

Before using it: Requires supported artifacts and provider.

Read the full explanation

/artifacts

Browse available artifacts.

Inside a supported Claude Code terminal session
/artifacts

Before using it: Account and environment dependent.

Read the full explanation

/design-login

Authorize design-system access.

Inside a supported Claude Code terminal session
/design-login

Before using it: Needed for applicable design-sync flows.

Read the full explanation

/design-sync [hint]

Connect a React design system.

Inside a supported Claude Code terminal session
/design-sync

Before using it: Can upload components; inspect scope first.

Read the full explanation

/chrome

Configure browser integration.

Inside a supported Claude Code terminal session
/chrome

Before using it: Requires the supported Chrome setup.

Read the full explanation

/ide

Inspect editor integrations.

Inside a supported Claude Code terminal session
/ide

Before using it: For supported local editors.

Read the full explanation

/desktop

Move into the desktop app.

Inside a supported Claude Code terminal session
/desktop

Before using it: Alias: /app; supported OS and account required.

Read the full explanation

/mobile

Open mobile install information.

Inside a supported Claude Code terminal session
/mobile

Before using it: Aliases: /ios, /android.

Read the full explanation

/theme

Choose terminal colors.

Inside a supported Claude Code terminal session
/theme

Before using it: Includes accessibility-oriented themes.

Read the full explanation

/color [color|default]

Change the session accent.

Inside a supported Claude Code terminal session
/color

Before using it: Helps distinguish parallel sessions.

Read the full explanation

/focus

Simplify the terminal view.

Inside a supported Claude Code terminal session
/focus

Before using it: Available with fullscreen rendering.

Read the full explanation

/tui [default|fullscreen]

Choose terminal rendering.

Inside a supported Claude Code terminal session
/tui

Before using it: Relaunches the interface.

Read the full explanation

/scroll-speed

Tune mouse scrolling.

Inside a supported Claude Code terminal session
/scroll-speed

Before using it: Fullscreen-only; platform restrictions apply.

Read the full explanation

/terminal-setup

Configure terminal shortcuts.

Inside a supported Claude Code terminal session
/terminal-setup

Before using it: Behavior depends on the terminal app.

Read the full explanation

/keybindings

Edit keyboard shortcuts.

Inside a supported Claude Code terminal session
/keybindings

Before using it: Review changes in the binding file.

Read the full explanation

/statusline

Customize the status bar.

Inside a supported Claude Code terminal session
/statusline

Before using it: Describe the information you want.

Read the full explanation

/voice [hold|tap|off]

Control voice input.

Inside a supported Claude Code terminal session
/voice

Before using it: Requires supported account and audio setup.

Read the full explanation

/sandbox

Configure supported sandboxing.

Inside a supported Claude Code terminal session
/sandbox

Before using it: Platform support differs.

Read the full explanation

/auto-mode-setup

Draft auto-mode configuration.

Inside a supported Claude Code terminal session
/auto-mode-setup

Before using it: Review the proposed environment rules.

Read the full explanation

/fewer-permission-prompts

Propose permission allow rules.

Inside a supported Claude Code terminal session
/fewer-permission-prompts

Before using it: Broad approvals increase access.

Read the full explanation

/setup-bedrock

Configure Amazon Bedrock.

Inside a supported Claude Code terminal session
/setup-bedrock

Before using it: Provider configuration must be enabled.

Read the full explanation

/setup-vertex

Configure Google’s provider.

Inside a supported Claude Code terminal session
/setup-vertex

Before using it: Provider configuration must be enabled.

Read the full explanation

/insights

Analyze local session patterns.

Inside a supported Claude Code terminal session
/insights

Before using it: Not available in cloud sessions.

Read the full explanation

/team-onboarding

Draft an onboarding guide.

Inside a supported Claude Code terminal session
/team-onboarding

Before using it: Uses recent session history.

Read the full explanation

/release-notes

Read version changes.

Inside a supported Claude Code terminal session
/release-notes

Before using it: Check when an older tutorial differs.

Read the full explanation

/feedback [report]

Send product feedback.

Inside a supported Claude Code terminal session
/feedback

Before using it: Review what will be included.

Read the full explanation

/bug [report]

Prepare a bug report.

Inside a supported Claude Code terminal session
/bug

Before using it: Alias: /share; review diagnostic content.

Read the full explanation

/heapdump

Create memory diagnostics.

Inside a supported Claude Code terminal session
/heapdump

Before using it: Contains sensitive data; never share the raw heap snapshot.

Read the full explanation

/powerup

Explore interactive lessons.

Inside a supported Claude Code terminal session
/powerup

Before using it: Availability can change.

Read the full explanation

/passes

Share eligible trial access.

Inside a supported Claude Code terminal session
/passes

Before using it: Only for eligible accounts.

Read the full explanation

/radio

Open Claude FM.

Inside a supported Claude Code terminal session
/radio

Before using it: Optional browser audio.

Read the full explanation

/stickers

Open sticker ordering.

Inside a supported Claude Code terminal session
/stickers

Before using it: An account perk, not a development tool.

Read the full explanation

GitHub & Git

Inspect changed files

See which branch you are on and which files changed.

Operating-system terminal, in the repository
git status

Before using it: Run before staging or switching work.

Read the full explanation

Read unstaged changes

Review edits not yet staged for a commit.

Operating-system terminal, in the repository
git diff

Before using it: New untracked files are not shown; inspect those files separately.

Read the full explanation

Read staged changes

Review exactly what the next commit would include.

Operating-system terminal, in the repository
git diff --staged

Before using it: Staging does not publish anything.

Read the full explanation

Create a practice branch

Make a separate line of work.

Operating-system terminal, in the repository
git switch -c practice/readme

Before using it: Check that you are in the intended repository first.

Read the full explanation

Stage one reviewed file

Select this file for the next commit.

Operating-system terminal, in the repository
git add README.md

Before using it: Inspect the file first. This changes the staging area.

Read the full explanation

Save a reviewed snapshot

Record your staged changes locally.

Operating-system terminal, in the repository
git commit -m "Clarify the practice README"

Before using it: A local commit does not upload or deploy the project.

Read the full explanation

Inspect recent history

Show the five latest commits.

Operating-system terminal, in the repository
git log --oneline -5

Before using it: A commit is a snapshot; a branch is a line of work.

Read the full explanation

Review a pull request

Compare the proposed work with the target branch before merging.

Interface action: Read the Files changed tab and the checks for the latest commit.

Before using it: Closing an unmerged practice PR leaves the target branch unchanged.

Read the full explanation

Troubleshooting

Command not found

Distinguishes installation problems from command syntax problems.

Interface action: Reopen your terminal, check the installation method, and confirm the shell.

Before using it: Do not install a second copy before identifying the first.

Read the full explanation

Repository missing

Private repositories need the appropriate authorization.

Interface action: Check the connected GitHub account and repository access granted to the Claude app.

Before using it: Organization access may require an owner’s approval.

Read the full explanation

Dependency install fails

Separates a blocked download from a missing runtime or wrong package manager.

Interface action: Read the first error, the project README, and the lockfile.

Before using it: Do not broaden access without identifying the failed dependency.

Read the full explanation

Undo a mistake

Protects unrelated work while identifying what changed.

Interface action: Stop, inspect git status and the diff, then choose a recovery method.

Before using it: Checkpoints do not undo every shell command or external action.

Read the full explanation

Unexpected usage

Subscription usage and API billing are different.

Interface action: Check your account, billing path, and usage information.

Before using it: Never paste a key into a troubleshooting report.

Read the full explanation

Website not visible

These are separate outcomes.

Interface action: Ask whether the task wrote code, ran a preview, or actually published the site.

Before using it: A merged pull request only deploys if hosting is configured.

Read the full explanation

Task prompts

Understand a project

Begin with a read-only tour.

Claude Code conversation, browser or local
Explain the README, main configuration, and folder structure. Do not edit or install anything.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Fix a bug

Replace every bracketed field with your actual details.

Claude Code conversation, browser or local
Reproduce [steps]. Expected: [result]. Actual: [error]. Propose the smallest fix before editing.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Build a feature

State scope and evidence before implementation.

Claude Code conversation, browser or local
Add [feature] in [area]. Keep [constraints]. Success means [observable checks]. Propose a plan first.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Review code

Keep review separate from applying its findings.

Claude Code conversation, browser or local
Review correctness, security, regressions, and missing checks. Cite files and lines. Do not edit or post comments.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Verify completion

Ask for evidence that matches the latest version.

Claude Code conversation, browser or local
List changed files, checks run, results, and unverified items. Explain what I should try manually.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Document a workflow

Avoid instructions that assume unverified tools or settings.

Claude Code conversation, browser or local
Use the actual repository to explain prerequisites, steps, verification, and recovery. Flag missing information.

Before using it: Review the result. These prompts do not grant missing tools or enforce permissions.

Read the full explanation

Command catalog explanations are adapted from this guide’s command reference. Check the linked official documentation and your installed /help menu when availability differs.

Was this chapter useful?

Report an error

Votes are shared only if you enable optional measurement in Privacy & Preferences.

CONTINUE THE GUIDEPractical workflows

Edit this example

Changes here affect this copy only. Nothing runs from this site. Closing this window discards your edits.

Search the field guide

Search all chapters and FAQ answers. Use Tab to reach a result and Enter to open it.