Effort: deep
A SciDEX synthesizer brief is the closest thing the platform has to
a "publishable artifact" — it has structured sections, citations,
figures, an evidence table. But there's no path from there to a
LaTeX manuscript a researcher can import into Overleaf or submit
to a venue. The K-Dense skills bundle already ships
venue-templates, scientific-writing, and latex-posters
skills; lean on them to ship a one-click "Export to LaTeX" path
that emits venue-templated .tex + a tarball of figures and a
.bib. Specifically valuable for the synthesizer briefs and for
high-quality hypothesis pages.
scidex/forge/latex_export.py:export_artifact_to_latex(artifact_id, venue:
Literal['neurips','nature_methods','plos_one',
'arxiv_preprint']='arxiv_preprint') -> Path returns amain.tex,references.bib, figures/, Makefile.mermaid_utils.py:render_to_pdf (or shell-outvenue-templates skill to fetch the rightattributed_evidence PMID/DOI ishttps://api.crossref.org/works/<doi>/transform/
application/x-bibtex (and PubMed for PMIDs without DOIs).
migrations/<date>_latex_exports.sql:CREATE TABLE latex_exports (
id UUID PRIMARY KEY,
artifact_id TEXT NOT NULL REFERENCES artifacts(id),
venue TEXT NOT NULL,
export_path TEXT NOT NULL,
bytes BIGINT,
figure_count INT,
bib_entry_count INT,
created_by TEXT,
created_at TIMESTAMP NOT NULL DEFAULT NOW()
);GET /artifacts/{id}/export.tex.tar.gz?venue=Xdata/scidex-artifacts/exports/.
https://www.overleaf.com/docs?snip_uri=...tests/test_latex_export.py:make (in a sandbox container) compilesdata/scidex-artifacts/exports/<artifact_id>/<venue>/.
bib_entries table keyed on doi/pmid.
\includegraphics.
venue-templates, scientific-writing skills (already inmermaid_utils.py — diagram rendering.q-integ-cite-this-bibtex — shares the BibTeX resolver