| name | claude-academic-workflow-guide |
| description | Claude Code template for LaTeX, Beamer, and R research workflows |
| metadata | {"openclaw":{"emoji":"๐","category":"research","subcategory":"automation","keywords":["Claude Code","academic workflow","LaTeX","Beamer","R","multi-agent review"],"source":"https://github.com/pedrohcgs/claude-code-my-workflow"}} |
Claude Code Academic Workflow Guide
Overview
A template and workflow guide for using Claude Code in academic research โ managing LaTeX papers, Beamer presentations, R analysis scripts, and multi-agent peer review. Provides structured CLAUDE.md configurations, project templates, and automation patterns for common academic tasks. Designed for economists, social scientists, and quantitative researchers.
Project Structure
research-project/
โโโ CLAUDE.md # Claude Code instructions
โโโ paper/
โ โโโ main.tex # Main LaTeX document
โ โโโ references.bib # Bibliography
โ โโโ sections/ # LaTeX sections
โ โโโ figures/ # Generated figures
โโโ slides/
โ โโโ presentation.tex # Beamer slides
โ โโโ figures/
โโโ code/
โ โโโ analysis.R # Main analysis
โ โโโ data_clean.R # Data preparation
โ โโโ figures.R # Figure generation
โโโ data/
โ โโโ raw/ # Original data
โ โโโ processed/ # Cleaned data
โโโ output/
โโโ tables/ # LaTeX tables
โโโ figures/ # PDF/PNG figures
CLAUDE.md Configuration
# Project: [Your Paper Title]
## Instructions
- This is an academic research project in economics
- LaTeX compiler: pdflatex (paper) or xelatex (if CJK)
- R version: 4.3+ with tidyverse, fixest, ggplot2
- Citation style: natbib, authoryear
- Always compile paper after LaTeX changes
- Run R scripts from project root
## Paper Conventions
- Use \input{sections/intro} for section includes
- Tables: booktabs package, generated from R
- Figures: PDF format, width=\textwidth
- Cross-refs: \label{sec:}, \label{tab:}, \label{fig:}
## R Conventions
- Style: tidyverse style guide
- Data: read from data/processed/
- Output: tables/ (LaTeX), figures/ (PDF)
- Reproducibility: set.seed(42) for all random ops
## Build Commands
- Paper: `cd paper && pdflatex main && bibtex main && pdflatex main && pdflatex main`
- Slides: `cd slides && pdflatex presentation`
- Analysis: `cd code && Rscript analysis.R`
LaTeX Paper Workflow
Beamer Presentations
% Template for academic presentations
\documentclass[aspectratio=169]{beamer}
\usetheme{metropolis}
\title{Your Presentation Title}
\subtitle{Conference/Seminar Name}
\author{Author Name}
\institute{University}
\date{\today}
\begin{document}
\maketitle
\begin{frame}{Motivation}
\begin{itemize}
\item Research question
\item Why it matters
\item What we do
\end{itemize}
\end{frame}
\begin{frame}{Data}
\input{figures/summary_stats_table}
\end{frame}
\begin{frame}{Results}
\centering
\includegraphics[width=0.8\textwidth]{figures/main_result.pdf}
\end{frame}
\end{document}
R Analysis Integration
library(tidyverse)
library(fixest)
library(modelsummary)
df <- read_csv("data/processed/analysis_data.csv")
model1 <- feols(outcome ~ treatment | year + state, data = df)
model2 <- feols(outcome ~ treatment + controls | year + state,
data = df, cluster = ~state)
modelsummary(
list("(1)" = model1, "(2)" = model2),
output = "output/tables/main_results.tex",
stars = c("*" = 0.1,
gof_map
ggplotdf aesx year y outcome color treated
geom_pointalpha
geom_smoothmethod
theme_minimal
labsx y color
ggsave width height
Multi-Agent Review
### Self-Review Workflow
Use Claude Code to simulate peer review:
1. "Review this paper as a critical referee for AER"
2. "Check all mathematical derivations in section 3"
3. "Verify that all tables match the R code output"
4. "Check for consistency between text claims and results"
5. "List potential referee objections and how to address them"
Common Tasks
### Things to ask Claude Code:
- "Compile the paper and fix any errors"
- "Add robustness check using propensity score matching"
- "Create a Beamer slide summarizing Table 2"
- "Generate event study plot from the regression results"
- "Convert this Word draft to LaTeX format"
- "Check all cross-references are correct"
- "Format references in AEA style"
Use Cases
- Paper writing: LaTeX drafting and compilation workflow
- Data analysis: R script development and debugging
- Presentations: Beamer slide creation from paper content
- Self-review: Multi-agent review simulation
- Submission prep: Format conversion for journal submission
References