Latest agent papers march 2026

Latest agent papers march 2026
Photo by Europeana / Unsplash

Executive Summary

Recent weeks have seen rapid advances in AI agent engineering – the design of autonomous LLM-based systems – spanning new architectures, training methods, evaluation benchmarks, and tooling standards. Key themes include long-horizon planning (using RL and subgoal decomposition to sustain coherent multi-step reasoning), multi-agent coordination (hierarchical and parallelized teams of agents), and agent infrastructure (efficient serving and standard APIs for agentic workflows). For example, Wu et al. propose an RL “recipe” for long-horizon agents that uses a mix of reward shaping and curriculum learning to outperform naive fine-tuning on complex tasks【10†L1-L9】【13†L11-L17】. In parallel, Gao et al. address the “granularity mismatch” in offline RL by introducing a hierarchical preference learning framework that integrates trajectory-, group-, and step-level rewards, achieving new state-of-art performance on challenging benchmarks【60†L13-L22】【62†L753-L762】. Google DeepMind demonstrates that explicit subgoals and milestoning – both at inference and training time – greatly boost web-navigation agents: their MiRA framework uses on-the-fly subgoal planning and dense RL rewards to surpass GPT-4–level success rates on WebArena tasks【84†L129-L138】. Multi-agent systems also improve: Bui et al. introduce HiMAP-Travel, a hierarchical team of agents that splits a travel planning task into strategic coordination and parallel “day-executors,” enforcing budget constraints and bargaining to ensure consistency. HiMAP-Travel doubles throughput and beats prior single-agent baselines by +8–17 pp on travel benchmarks【82†L61-L68】.

On the infrastructure side, Wadlom et al. present Helium, a data-systems approach to LLM serving: it treats agent workflows as query plans and uses caching/scheduling to reuse intermediate results across parallel calls, yielding ~1.5× throughput gains【91†L59-L67】. Standards are also emerging: OpenAI’s new Open Responses specification (adopted by Hugging Face and others) formalizes agentic API calls (messages, function-calls, reasoning traces, etc.) to unify multi-step agent workflows across model providers【50†L59-L67】【47†L252-L261】. Finally, researchers are probing fundamental properties of agents: Pasichnyk shows LLM agents in a simulated “Survival Arena” exhibit an inverted-U response to environmental stress – moderate pressure maximizes cooperation, while extremes collapse agent behavior – and that introducing “sexual selection” (reproduction pressure without death) eliminates aggression altogether【92†L79-L88】.

Key gaps and open problems emerging from these works include ensuring robustness and interpretability of agents (agents can drift or hallucinate over long tasks), scaling memory and context, and standardizing evaluation (nondeterministic, open-ended tasks defy simple metrics). Practical takeaways suggest engineering best practices: leverage hierarchical decomposition (subgoals, multi-agent teams) for complex tasks, apply targeted RL fine-tuning (e.g. milestone rewards) rather than naive training, and adopt emerging standards (OpenResponses) for interoperability. We recommend follow-up readings such as the LangChain “State of Agent Engineering” report and the curated “Awesome AI Agent Papers” repository.

Top Recent Papers and Posts

  1. “Demystifying Reinforcement Learning for Long-Horizon Tool-Using Agents: A Comprehensive Recipe” – Wu et al. (CUHK, arXiv Mar 23, 2026)【10†L1-L9】【13†L11-L17】. This paper systematically explores how to train LLM-based agents via RL on a long-horizon planning testbed (TravelPlanner). The authors propose a “STAR” pipeline (Strategy exploration, Tool shaping, Adaptive curriculum, Reward engineering) and ablate factors like reward design, model size, data diversity, and PPO variants. They show that with careful tuning, a 7B LLM trained with PPO outperforms standard finetuning and even frontier LLMs on the 150-step TravelPlanner task. Contributions: seven key empirical takeaways (e.g. smaller models need curricula, larger models benefit from longer rollout planning) and a reproducible TravelPlanner environment. Methods: Transformer LLM + PPO, with reward shaping and progressive fine-tuning. Datasets/Benchmarks: TravelPlanner (constrained travel planning with budget and schedule). Results: ~30% absolute gains in success rate over supervised baselines【13†L11-L17】. Limitations: experiments in a simulated environment, single-domain; generalization beyond 7B models is untested【13†L11-L17】. (Code: Agent-STAR GitHub.)
  2. “Solving the Granularity Mismatch: Hierarchical Preference Learning for Long-Horizon LLM Agents” – Gao et al. (Baidu/RUC, ICLR 2026)【60†L13-L22】【62†L751-L760】. This ICLR paper addresses offline alignment of LLM agents via preferences. It observes that standard Direct Preference Optimization (DPO) at the trajectory or step level is either too coarse or too myopic. The authors propose HPL, a hierarchical framework that introduces a new group-level DPO: expert trajectories are decomposed into coherent action groups (subtasks), and preference signals are applied at this intermediate level. A dual-layer curriculum schedules training by subtask complexity and difficulty. Contributions: (1) HPL framework combining trajectory-, group-, and step-level preferences, (2) curriculum learning over subtasks, (3) systematic evaluation on three benchmarks, and (4) analysis of grouping strategies. Methods: Offline preference training using Qwen-2.5 backbone; group preferences generated by contrasting suboptimal action segments; curriculum progressively increases group length. Benchmarks: ALFWorld (embodied home tasks), WebShop (e-commerce browsing), InterCode-SQL (interactive SQL querying)【62†L772-L781】【62†L778-L787】. Results: HPL significantly outperforms baselines (including standard DPO and process-supervision methods) on all three, achieving higher success rates (e.g. ~59% average vs ~49% for baselines)【60†L25-L33】. Limitations: effectiveness depends on quality of action grouping and adds hyperparameters (curriculum design); current pipeline uses a powerful teacher (GPT-4o) for generating preferences, which could bias the agent【62†L753-L762】. (Code: yes, [ARPO GitHub link] provided, but for HPL code not explicitly linked.)
  3. “A Subgoal-Driven Framework for Improving Long-Horizon LLM Agents” – Wang et al. (Google DeepMind, arXiv Mar 20, 2026)【84†L129-L138】. DeepMind introduces MiRA (“Milestoning your Reinforcement Learning Agent”), combining on-the-fly subgoal planning with RL shaping for web navigation tasks. The framework has two parts: (1) an inference-time planner that decomposes tasks into subgoals (milestones) and refines them dynamically, and (2) an RL fine-tuning regime that gives dense rewards when subgoals are reached. On WebArena-Lite (a realistic web browsing benchmark), adding real-time subgoal planning improves the success rate of Google’s Gemini agent by ~10%. More impressively, applying MiRA to their open Gemma3-12B model triples its success (to above GPT-4 and GPT-4o levels)【84†L129-L138】. Contributions: explicit milestone/subgoal decomposition at inference; milestone-based reward shaping (dense feedback) at training; empirical demonstration that these yield large gains on long tasks. Methods: Proprietary and open LLM backbones with RL fine-tuning using policy gradients and milestone rewards. Results: +10% success for Gemini on WebArena-Lite; Gemma3-12B+MiRA surpasses GPT-4-turbo on multi-step web tasks【84†L129-L138】. Limitations: proprietary model use limits reproducing results; focus is on web tasks (OpenAI tool benchmarks).
  4. “HiMAP-Travel: Hierarchical Multi-Agent Planning for Long-Horizon Constrained Travel” – Bui et al. (Meta-Moonshot, arXiv Mar 5, 2026)【82†L53-L62】【82†L63-L68】. This paper tackles complex travel planning (e.g. multi-city trip with constraints) by splitting one agent into a team. A high-level Coordinator agent allocates resources across days, while multiple Day Executor agents plan each day in parallel. Key mechanisms include a transactional monitor that enforces global budget/diversity constraints across agents, and a bargaining protocol allowing agents to backtrack if a subgoal (e.g. hotel booking) is infeasible【82†L53-L62】. All agents share a single policy trained with GRPO (off-policy RL) but behave as different “roles.” Results: On the TravelPlanner benchmark, HiMAP-Travel (using a 8B Qwen model) achieved a ~52.7% success rate, beating a sequential baseline by +8.7 pp and prior methods (ATLAS, MTP) by +10–18 pp【82†L61-L68】. Importantly, parallel planning cut latency by 2.5×. Contributions: a novel multi-agent architecture for constrained planning; enforcement of hard constraints via negotiation; substantial empirical improvements on a challenging, long-horizon task. Limitations: evaluated on travel tasks only; uses internal Meta models (Qwen).
  5. “FT-Dojo: Towards Autonomous LLM Fine-Tuning with Language Agents” – Liu et al. (Microsoft Research, arXiv Mar 3, 2026)【88†L19-L27】【89†L29-L33】. This work asks: Can agents automate end-to-end LLM fine-tuning? It introduces an interactive benchmark FT-Dojo (13 real-world tasks in 5 domains) and an agent FT-Agent that iteratively curates data, runs training, and analyses outcomes. The agent mirrors human expert cycles: it proposes changes (strategy), validates them (syntax checks), then trains and evaluates, using the feedback to refine the next iteration. Contributions: (1) FT-Dojo environment simulating domain-specific LLM tuning; (2) FT-Agent framework with three-stage loop (strategy proposal, progressive validation, training + evaluation); (3) empirical results showing purpose-built FT-Agent outperforms general agents. Results: FT-Agent achieves top performance on 10/13 tasks, far ahead of baselines and even human-curated attempts【89†L29-L33】. Ablations on 3B models show it generalizes to smaller models. Agents demonstrate emergent strengths (failure recovery via memory) but also weaknesses (struggle with causal reasoning)【89†L31-L35】. Limitations: uses large GPT-5.2 backbone (internal), evaluation remains simulation-based, and real-world integration requires further work.
  6. “Efficient LLM Serving for Agentic Workflows: A Data Systems Perspective” – Wadlom et al. (MIT, arXiv Mar 17, 2026)【91†L59-L67】. This paper addresses the inference infrastructure for agents. Agentic workflows typically involve many LLM calls with overlapping inputs/outputs. The authors introduce Helium, a workflow-aware serving framework that treats an agent workflow like a database query plan. Helium adds proactive caching and cache-aware scheduling: for example, it reuses shared KV-cache states when two LLM calls have similar prompts, and it schedules parallel calls to minimize redundant computation. Contributions: (1) Modeling agent workflows as first-class query plans; (2) Techniques for cross-call caching of context and intermediate results; (3) Empirical evaluation showing up to 1.56× speedup over state-of-art LLM serving (e.g. vLLM) on agent benchmarks【91†L59-L67】. Implications: Helium suggests that end-to-end optimization (rather than treating each API call in isolation) is crucial for scalable agents. Limitations: Focus is on speed/throughput, not on handling dynamic runtime feedback or learning; evaluated on synthetic agent workloads.
  7. “The Yerkes–Dodson Curve for AI Agents: Optimal Environmental Pressure for Emergent Complexity in LLM Multi-Agent Systems” – Pasichnyk (WeLabelData, arXiv Mar 7, 2026)【92†L79-L88】. A study of emergent behavior in multi-agent LLM populations. In a grid-world “Survival Arena,” Claude 3.5 agents forage, trade, fight, and reproduce under varying levels of environmental stress. The paper finds a clear inverted-U (“Yerkes–Dodson”) effect: cooperative trades peak at medium pressure and collapse under very low or extreme scarcity【92†L79-L88】. Under extreme survival pressure, agents reduce to basic movements within a few turns. Interestingly, introducing sexual selection (all survive but only some reproduce) eliminates aggression entirely and yields richer communication (trades, signals) absent under lethal pressure【92†L83-L92】. Contributions: (1) First systematic mapping of stress vs. behavior in LLM agents; (2) Empirical finding that moderate difficulty maximizes social complexity; (3) Novel insight that alternative pressures (sexual selection) can induce coordination without aggression. Implications: This suggests curriculum-like tuning of environment (“Goldilocks” difficulty) and diversity in agent populations may foster emergent cooperation. Limitations: Results hold in a toy grid environment with one model type; implications for real-world tasks or mixed-model teams need exploration.
  8. “Agentic Reinforced Policy Optimization (ARPO)” – Dong et al. (Beijing Institute of Technology, ICLR 2026 poster)【86†L39-L48】. The authors propose ARPO, an RL algorithm tailored for tool-using LLM agents. They note that after an LLM makes a tool-call, its output distribution often has high entropy (uncertainty). ARPO’s key innovation is an entropy-adaptive rollout: when the agent is uncertain (high entropy), ARPO spawns multiple parallel rollouts to explore tool-use steps more thoroughly. It also uses an InfoNCE-based advantage estimation to attribute credit at fine granularity. Results: Across 13 long-horizon tasks, ARPO matches or exceeds standard PPO-level baselines while using only half the tool-call budget【86†L41-L48】. Contributions: A new sampling strategy for multi-turn RL in agents; demonstrating improved sample efficiency in tool-using tasks. Limitations: Preliminary (poster), focused on specific benchmarks; full details and code are provided (see ARPO GitHub).
  9. OpenAI Open Responses Specification (Feb 2026)【50†L59-L67】【47†L252-L261】. Though not a paper, this official open standard is a major development for agent engineering. OpenAI (with Hugging Face, LM Studio, etc.) published the Open Responses specification, which generalizes the new Responses API into a vendor-neutral format. It defines rich message “items” (messages, function calls, reasoning traces, tool invocations, etc.) and a state-machine for streaming events, enabling multistep agentic loops to be expressed uniformly【47†L252-L261】【50†L59-L67】. Internal vs. external tools are distinguished, and reasoning visibility fields (content, encrypted_content, summary) allow controlled introspection of agent “thoughts”【47†L252-L261】. Significance: Open Responses enables interchangeability of agents across providers and routers, standardizing how LLMs manage tools and intermediate steps. Early partners (HuggingFace, Vercel, LM Studio, etc.) are adopting it, promising an ecosystem where developers can switch model backends without rewriting agent code. This standard addresses a core engineering pain point – fragmentation of agent APIs – and lays groundwork for interoperable agent workflows【47†L252-L261】【50†L59-L67】. (See the official spec and Hugging Face blog for details.)
  10. (Bonus) “State of Agent Engineering” Report (LangChain, 2026). While not a research paper, this industry survey captures emerging industry trends. It reports that 57% of surveyed organizations already have agents in production, with reliability/quality and observability as top concerns. Notably, fine-tuning remains rare, and multistage agents with RL are still mostly experimental. Key challenges include prompt engineering at scale and latency trade-offs. This complements the research above by showing that agent engineering is maturing in practice, highlighting needs for better evaluation, debugging, and tool support. (Survey details: LangChain 2026 State of Agent Engineering report.)

Synthesis of Emerging Concepts and Practices

Architectures & Frameworks: A clear theme is decomposing agent tasks hierarchically and modularly. Single-agent LLMs often falter on long, constrained tasks, so researchers split agents into roles or stages: e.g. in HiMAP-Travel a Coordinator sets a global plan and Executor agents handle subplans in parallel【82†L53-L62】. MiRA and STAR approaches similarly decompose tasks into subgoals or phases. Many systems follow a plan→act→reflect loop, coupling a Transformer core with memory/tool modules. Across the works, core components include: an LLM “brain” for reasoning; an external tool interface for actions (web navigation, database, search, etc.); and some form of memory or state to carry context. Agents differ by orchestration: single thread (Demystifying RL), parallel teams (HiMAP), or sequential loops (FT-Agent’s strategy→validate→train cycle【89†L29-L33】).

Learning Paradigms: While supervised fine-tuning remains a baseline, reinforcement learning (RL) and preference learning are pivotal for agent alignment. Papers like Wu et al., HPL, ARPO and MiRA use RL or offline RL (e.g. PPO or DPO) to refine LLM policies on long-horizon tasks. This often involves dense or shaped rewards: MiRA’s milestone rewards and Wu’s curriculum serve to combat sparse feedback. Other works blend imitation and RL: Wu et al. begin with supervised bootstrapping, and HPL incorporates DPO with high-quality expert trajectories【62†L772-L781】. Unsupervised or self-play remains less explored in these works. Notably, Helium and OpenResponses do not involve learning but target inference and API design.

Evaluation Metrics & Benchmarks: Agent tasks are evaluated on success rates, efficiency, and robustness. Benchmarks cited include TravelPlanner and FlexTravelBench (for planning)【82†L61-L68】, WebArena and related UI tasks (for web navigation)【84†L129-L138】, and domain tasks (for FT-Dojo). Common metrics are final success rate (e.g. Final Pass Rate) and reward/score. Complexity leads to nondeterminism (LLMs vary output), so some works average over many runs or break down results by error mode. Yerkes-Dodson uses emergent behaviors (trade counts, aggression) as proxies for “performance.” Across these studies, authors note that single metric scores can hide failure modes (e.g. hallucinations, constraint violation). Thus there is a trend toward richer analysis: e.g. HiMAP’s monitoring of global constraints, FT-Agent’s diagnosis of training failures, or Yerkes’ fine-grained tracking of agents’ actions.

Engineering Practices: Several best practices emerge. Context and memory management are crucial: agents must curate relevant information over long runs. Anthropic’s blog (context engineering) and related works emphasize keeping the LLM’s context token budget high-signal and well-structured (e.g. system prompt calibration) – reflecting how stateful agents need context pipelines. Tool integration is standardized through specifications like OpenResponses: this includes tagging function calls and streaming reasoning chunks so that tools and models interoperate smoothly【50†L59-L67】. Monitoring and observability are also stressed: for example, Helium’s caching and FT-Agent’s progressive validation show the need to track intermediate states to avoid inefficiency or error. Multi-agent systems highlight communication architectures: some papers (like HiMAP) use simple broadcast or shared memory, but emerging work suggests more structured messaging (e.g. tree hierarchies, contracts).

Reproducibility: Many papers release code or at least detailed setups. Helium, HPL, and Demystifying RL all provide source or links (e.g. Agent-STAR GitHub). Benchmarks used (ALFWorld, WebShop, etc.) are public. However, reliance on proprietary LLMs (Gemini, GPT-4o) or internal platforms (FT-Agent’s GPT-5.2) means exact replication can be hard for outsiders. Fortunately, specification efforts (OpenResponses) and community frameworks (LangChain, HuggingFace) are lowering barriers: one can run similar agent loops with open models and the same data schemas.

Open Problems, Risks, and Practical Implications

Robustness and Safety: Autonomous agents must handle unexpected inputs, avoid harmful actions, and follow constraints. Papers warn of “policy drift” (agents veering off course) and erroneous tool usage. HiMAP-Travel’s bargaining mechanism is an example of enforcing safety (rejecting infeasible plans)【82†L53-L62】. Safety also intersects with multi-agent risks: emergent behaviors (as in Yerkes-Dodson) could be unpredictable. Defining safe reward functions and monitoring remains an open challenge.

Interpretability: Agents’ reasoning chains are largely latent. OpenResponses aims to expose some reasoning via item streams, but it’s still an open question how to audit complex agent decisions. The surveyed works offer partial answers: e.g. exposing subgoal sequences, logging constraint checks, or post-hoc trace analysis (FT-Dojo). More systematic agent interpretability methods are needed.

Evaluation Standards: Agent tasks are inherently open-ended and stochastic. Current benchmarks capture some aspects (success rates on scripted tasks), but miss others (e.g. user satisfaction, hallucination frequency). There is a risk of overfitting to narrow testbeds. Researchers note the lack of agreed metrics for agent reliability (like success under perturbation, coverage of user intent). The field is only beginning to develop suites of robustness challenges (like capture-the-flag families or trace-based verification) to complement standard benchmarks.

Scalability: Agents that work on limited tasks or models may break at scale. The Helium paper highlights that naive LLM serving won’t scale to real workloads, and more engineering is needed for caching and batching. Similarly, context length limits constrain long-horizon agents; hierarchical decomposition helps, but true scalability (thousands of steps or multi-modal tasks) is unsolved.

Practical Deployment: For practitioners, these works imply several takeaways. Employ modular agent design: break complex goals into subgoals or specialized roles (as seen in HiMAP and MiRA). Use targeted RL tuning rather than black-box fine-tuning; incorporate dense intermediate rewards (milestones) to stabilize training. Adopt emerging standards and tooling: use frameworks (LangChain, LangGraph) that support multi-agent orchestration and follow the OpenResponses schema for API calls. Prioritize observability (log reasoning and tool calls) and monitoring (e.g. constraint checks) in production agents, as these are known pain points. Finally, remain aware of limitations: smaller models with good RL tuning can beat giant pre-trained LLMs on specific tasks, so cost-effective solutions are viable.

Recommendations for Further Reading & Resources

  • OpenResponses.org: The official specification and tools for standardized agent workflows (see spec and InfoQ news【47†L252-L261】).
  • Hugging Face Open Responses Blog: A technical overview of the new spec【50†L59-L67】.
  • VoltAgent “Awesome AI Agent Papers”: A curated GitHub list of 2026 agent research (updated weekly) – great for staying abreast of new arXiv papers.
  • LangChain Blog and Guides: Authoritative industry insights on agent patterns, building tools, memory, etc. (e.g. the “State of Agent Engineering” report cited above).
  • FT-Dojo Repository: (When available) for autonomous fine-tuning tasks and FT-Agent code.
  • LangSmith/LangGraph: Open-source frameworks for chaining LLM calls, sub-agent planning, and context management.
  • Conference Proceedings: Look for ICLR 2026 and NeurIPS 2026 workshops on agents (these topics are rising).

Comparative Summary of Top Papers

Paper (2026) Core Architecture Agent Type Learning Paradigm Evaluation Tasks / Benchmarks Reproducibility
Wu et al., Demystifying RL【10†L1-L9】 Single LLM + tools (STAR pipeline) Single-agent Mixed supervised/RL (PPO with shaping) TravelPlanner (constrained travel planning)【10†L1-L9】 Code: Agent-STAR (GitHub)
Gao et al., HPL【60†L13-L22】 Single LLM + hierarchical reward levels Single-agent Offline RL (DPO at trajectory/group/step) ALFWorld, WebShop, InterCode-SQL (long-horizon tasks)【62†L772-L781】 Implementation details in paper (likely forthcoming code)
Wang et al., MiRA【84†L129-L138】 LLM + subgoal planner Single-agent On-policy RL (policy gradients, milestone rewards) WebArena-Lite (long-form web navigation)【84†L129-L138】 Uses proprietary models; methods described
Bui et al., HiMAP-Travel【82†L53-L62】 Hierarchical multi-agent Multi-agent (1 coordinator + n executors) RL (GRPO training shared policy) TravelPlanner, FlexTravelBench (constrained planning)【82†L61-L68】 Paper details; model Qwen-3 (internal)
Liu et al., FT-Dojo【88†L19-L27】 Agentic loop (Strategy/Validate/Train) Single-agent (fine-tuning agent) Agentic (specialized planning loop, not pure RL) FT-Dojo tasks (13 domain-specific fine-tuning tasks)【88†L19-L27】 Preprint details; code TBD
Wadlom et al., Helium【91†L59-L67】 Query-plan driven serving N/A (infrastructure) N/A (system optimization) Agentic workflow suites (not public benchmark)【91†L59-L67】 Code likely to be released
Pasichnyk, Yerkes–Dodson【92†L79-L88】 Grid-world simulation Multi-agent (70+ Claude agents) Zero-shot (fixed LLM) SurvivalArena (custom multi-agent grid)【92†L79-L88】 Environment and code details in paper
Dong et al., ARPO【86†L39-L48】 LLM + entropy-based RL Single-agent On-policy RL (adaptive rollout) 13 long-horizon tasks (various)【86†L39-L48】 Code on GitHub
Open Responses Spec【50†L59-L67】 Standardized API schema Any agent N/A (framework) N/A (infrastructure standard) Open specification (github)
timeline
    title Recent Agent Engineering Milestones (Feb–Mar 2026)
    03/03/2026 : FT-Dojo agentic fine-tuning (Liu et al., MSR)  
    05/03/2026 : HiMAP-Travel multi-agent planning (Bui et al.)  
    07/03/2026 : Yerkes-Dodson study in multi-agent LLMs (Pasichnyk)  
    17/03/2026 : Helium: workflow-aware LLM serving (Wadlom et al.)  
    20/03/2026 : MiRA: subgoal + RL for web agents (Wang et al., DM)  
    23/03/2026 : Demystifying RL for long-horizon agents (Wu et al.)  

Each of these works pushes the frontier of agent engineering in complementary ways: from foundational RL methodologies and multi-agent system design to practical standards and tools. Together they highlight a shift toward more systematic, scalable, and interoperable agent architectures – while also revealing the open challenges (like reliable evaluation and safe autonomy) that must be tackled next.

Sources: All summaries above are drawn from the cited papers/posts and their abstracts or conclusions【10†L1-L9】【82†L53-L62】【84†L129-L138】【91†L59-L67】【92†L79-L88】【86†L39-L48】, as well as official blog posts (e.g. Hugging Face on Open Responses【50†L59-L67】). Each source’s key contributions and results are explicitly referenced in the text.