Getting material into Claude
Most of the friction in a Claude session isn’t the asking — it’s the getting your stuff in. A long instruction is tedious to type. A draft lives in a Word file, the data dictionary is a PDF, and the thing you actually want to show Claude is a figure or an error message on your screen. This chapter is about all three: talking instead of typing, converting documents into the format Claude reads best, and handing it images and PDFs directly. None of it requires anything beyond your first session.
Talking instead of typing
Section titled “Talking instead of typing”When the request in your head is two sentences, typing is fine. When it’s a paragraph — the full setup for a data-cleaning task, or a careful description of how you want a problem set reworked — dictation wins. Most people speak well over twice as fast as they type, but the bigger payoff is that talking lowers the cost of starting: the hardest sentence of a referee report or a paper introduction is the first one, and rambling a rough version aloud and then editing it beats staring at a blank prompt.
Claude Code has dictation built in. Run /voice, hold the trigger key while you speak,
and your words appear in the prompt as you talk (/voice tap switches to tap-to-start,
tap-again-to-send); you can mix voice and typing in the same message. The first time,
macOS asks to give your terminal microphone access — grant it once and it sticks. Two
things worth knowing: the audio is transcribed on Anthropic’s servers, not on your Mac,
so it needs your Claude.ai login and the same judgment as anything else you send Claude;
and dictating doesn’t count against your usage.
The alternative worth knowing about is Wispr Flow, a paid app (about $10/month as of
mid-2026) that does the same job system-wide — it transcribes your speech into any text
field, not just Claude’s, so the same habit works in your editor, your email, and your
browser. If sending audio to another vendor gives you pause, tools like Superwhisper
transcribe locally on your Mac instead. Either way, treat these as upgrades you might
grow into rather than a requirement. Built-in /voice is enough to start.
Converting documents to Markdown
Section titled “Converting documents to Markdown”Claude reads plain text best, and among plain-text formats it handles Markdown most
reliably. Markdown is just text with a few lightweight marks for structure: # for a
heading, - for a list item, ** around bold. There’s nothing to learn to read it —
it looks like a tidied-up text file — and Claude treats those marks as real structure,
so it can see that a section is a section and a list is a list rather than guessing from
spacing.
The practical consequence: a .md file in your folder is the cleanest thing you can hand
Claude. Lecture notes, a research log, a methods write-up, an outline for a paper — if
it’s in Markdown, Claude reads the structure exactly as you meant it.
Most of your material, though, starts life somewhere else: a syllabus in Word, a referee report as a PDF, notes scattered across a few formats. You don’t have to convert those by hand. Put the file in your working folder and ask:
Convert syllabus.docx to Markdown and save it as syllabus.md.Word files are the classic case — comments and Track Changes come through a direct read
awkwardly, so the converted copy is cleaner. The same logic covers data formats Claude
can’t read as raw binary: ask it to turn an Excel workbook into one CSV per sheet, or to
write the short Stata script (export delimited) that dumps a .dta file to CSV.
Claude can also go the other way — turn a Markdown draft back into a Word document for a
coauthor who lives in Track Changes. The point isn’t that Markdown is where everything
must end up; it’s the best working format: convert into it while you and Claude are
doing the thinking, and convert back out when you need to share. And for anything you’ll
return to for months — a codebook, a data dictionary, a reference paper — convert once
and keep the .md next to the original, so every later session starts from clean text.
Pasting figures, screenshots, and PDFs
Section titled “Pasting figures, screenshots, and PDFs”Not everything you want to show Claude is text. Sometimes the clearest way to explain a problem is to show it the picture — and you can.
Paste an image straight into the prompt with Ctrl + V. A few things that come up
constantly in teaching and research:
- A figure that doesn’t look right — a regression plot with an axis off, a chart whose legend is wrong. Paste it and ask what’s happening or how to fix the code that drew it.
- A table as an image — a results table from a paper you’re replicating, or a screenshot of output. Paste it and ask Claude to transcribe it into a LaTeX table or a data frame — then check every number against the original, because pulling text out of an image is the least reliable thing Claude does with pictures.
- An error screenshot — the red text when a script or a LaTeX build fails. Pasting the picture is often quicker than retyping the message.
You can also hand Claude a PDF directly. Put it in your working folder and point at it by name, and Claude reads the document without you converting anything first. This works best for a short, text-based PDF — a long or scanned one needs the conversion route from the note above — and it’s genuinely useful for the work economists actually do: drop in a working paper and ask for a summary of its identification strategy, hand over a dataset’s codebook PDF and ask it to pull the variable definitions into a table, or share the PDF of a paper you’re replicating so Claude can line its specification up against your code.
The same standing caveat applies as everywhere else in this guide: reading a figure or a PDF is an interpretation, and interpretations can be wrong. When Claude transcribes a table or reports what a paper claims, you’re still the reviewer of record — check the numbers and the wording against the source before they go anywhere.
Voice for the asking, Markdown for your documents, images and PDFs for everything that isn’t text: between them you can get almost anything in front of Claude without retyping or reformatting it by hand. The guide overview points to what’s next.