Compile Thesis PDF
Goal
Compile the LaTeX thesis into a PDF using the repository's standard build sequence.
Preconditions
- Run from the workspace root.
- The main entry file is thesis.tex.
Steps
- Run the standard build sequence in the terminal:
pdflatex -interaction=nonstopmode thesis.tex; bibtex thesis; pdflatex -interaction=nonstopmode thesis.tex; pdflatex -interaction=nonstopmode thesis.tex
- If the build fails:
- Identify the first LaTeX error and its log context.
- Propose and apply minimal, local edits to fix the issue (follow the thesis instructions).
- Re-run the build sequence.
- If the build still fails because the build command is incorrect or incomplete for this project, update this skill:
- Adjust the command in the Steps section.