URUCON paper: make DOCX the sole authoritative manuscript#38
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: c3f79455c3
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| cat .docx-payload/paper-* | base64 -d > research/urucon2026/paper/BatLLM_URUCON_2026_Paper.docx | ||
| cat .docx-payload/template-* | base64 -d > research/urucon2026/paper/conference-template-a4.docx |
There was a problem hiding this comment.
Regenerate the staged DOCX payloads
When these commands concatenate and decode the added .docx-payload chunks, the resulting files are not valid DOCX ZIPs: unzip -t reports invalid compressed data for the paper and a truncated/overlapped template. That means the archive.testzip() validation in the next step fails and the one-time migration never commits the real Word files, so the staged payloads need to be regenerated from valid DOCX files.
Useful? React with 👍 / 👎.
| template="research/urucon2026/paper/conference-template-a4.docx" | ||
| test -s "$paper" | ||
| test -s "$template" |
There was a problem hiding this comment.
Commit the template before requiring it in CI
At this commit, research/urucon2026/paper/conference-template-a4.docx is not present in the tree; only the staging chunks under .docx-payload/ exist. This new test -s "$template" check therefore fails in the research-artifact job before packaging can run on any PR or push at this revision, so the DOCX should be committed before CI requires it or CI should keep using an existing path until the migration has landed.
Useful? React with 👍 / 👎.
| @@ -0,0 +1,10 @@ | |||
| # DOCX manuscript migration | |||
There was a problem hiding this comment.
Update STATUS.md for the migration
This commit changes the URUCON workflow, artefact packaging, paper-source layout, and documentation, but leaves STATUS.md unchanged; the project status report is stale for the new Word-first workflow and validation state, which the repository instructions treat as mandatory upkeep for project changes.
Useful? React with 👍 / 👎.
Purpose
Migrate the URUCON 2026 paper from a LaTeX-led pipeline to a single authoritative Microsoft Word manuscript using the supplied IEEE A4 template.
Changes
conference-template-a4.docxto the paper directory;BatLLM_URUCON_2026_Paper.docxthe sole editable and submission manuscript;main.docx;Validation
A one-time workflow decodes the staged Word binaries and removes its staging files before this PR is merged.