latex-academic

Guides writing, structuring, and troubleshooting LaTeX manuscripts for academic journals and theses.

19|1|Updated Jun 15, 2026
One-click install
npx skills add https://github.com/Abhinavbwj/AEC-Scholar --skill latex-academic-abhinavbwj
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: latex-academic
Source: https://github.com/Abhinavbwj/AEC-Scholar/tree/main/aec-scholar/skills/latex-academic
Command: npx skills add https://github.com/Abhinavbwj/AEC-Scholar --skill latex-academic-abhinavbwj

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Academic authors struggle to match LaTeX documents to publisher requirements, manage BibTeX/BibLaTeX bibliographies, and fix cryptic compile errors when preparing journal submissions or theses. ## Core Features & Use Cases - Publisher Class Selection: Guidance for Elsevier elsarticle, IEEEtran, ASCE ascelike-new, Springer sn-jnl/svjour, and ACM acmart document classes. - Bibliography Management: Covers both BibTeX + natbib and BibLaTeX + biber workflows, including compile order and .bib file hygiene. - Publication-Quality Formatting: Instructions for booktabs tables, subcaption subfigures, siunitx units, cleveref cross-referencing, and a bundled article-template.tex starter file. - Use Case: When preparing a paper for Automation in Construction, ask for help setting up the elsarticle class with a numbered bibliography and correctly formatted figures and tables. ## Quick Start Ask the assistant to set up a LaTeX manuscript for your target journal using the bundled article template as a starting point.

Frequently Asked Questions about latex-academic

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I format a LaTeX paper for an Elsevier journal?▼

Use the elsarticle document class, for example \documentclass[review,3p,times]{elsarticle}, with the elsarticle-num or model5-names bibliography style. Download the journal's official template first rather than hand-rolling formatting the class already provides.

Should I use BibTeX with natbib or BibLaTeX with biber?▼

BibTeX with natbib is the classic route most publisher styles ship with, using \citep and \citet commands. BibLaTeX with biber is the modern, more flexible option using \autocite and \printbibliography. Pick one route and never mix them.

Why do my LaTeX citations show as question marks?▼

Citation placeholders appear when the bibliography step has not run. Compile in the order pdflatex, bibtex, pdflatex, pdflatex, and verify the .bib key exists and the bibliography style matches your venue.

How do I fix overfull hbox warnings in LaTeX?▼

Overfull hbox warnings come from long URLs or unbreakable words exceeding line width. Use \sloppy, the microtype package, or the url package with \url{} to allow line breaking.

Can I use Unicode characters with pdfLaTeX?▼

pdfLaTeX often fails on Unicode input. Switch the compiler to LuaLaTeX or XeLaTeX with fontspec for full Unicode and custom font support, or escape the problematic characters.