Skip to content

add subsubsection styles & fix wrong PDF bookmarks #12

add subsubsection styles & fix wrong PDF bookmarks

add subsubsection styles & fix wrong PDF bookmarks #12

Workflow file for this run

name: LaTeX Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Compile LaTeX document
uses: xu-cheng/latex-action@v3
with:
root_file: main.tex
- name: Check for LaTeX errors and warnings
run: |
if grep -q "^!" main.log; then
echo "LaTeX errors found:"
grep "^!" main.log
exit 1
elif grep -q "Warning:" main.log; then
echo "LaTeX warnings found:"
grep "Warning:" main.log
echo "Build completed with warnings."
else
echo "LaTeX build completed successfully without errors or warnings."
fi
- name: Upload PDF
uses: actions/upload-artifact@v4
with:
name: main.pdf
path: main.pdf