This repository contains a modern template for open science publications for the Insight Journal:
https://insight-journal.org
- 🚀 Modern authoring with MyST Markdown
- 📦 Dependency management with Pixi
- 🔄 Reproducible builds and environments
- 📄 Multiple export formats (PDF, HTML, DOCX, MECA)
- 🧪 Integrated source code testing and validation support
- 📚 Rich scientific features (figures, equations, citations, cross-references)
- Install Pixi:
curl -fsSL https://pixi.sh/install.sh | bash
- Clone this repository:
git clone https://github.com/InsightSoftwareConsortium/InsightJournalTemplate
cd InsightJournalTemplate
- Build the manuscript, source code, and run tests:
pixi run build
InsightJournalTemplate/
├── docs/ # MyST Markdown manuscript
│ ├── index.md # Main article content
│ ├── references.bib # Bibliography database
│ └── assets/ # Images and figures
│
├── src/ # C++ source code examples
│ ├── CMakeLists.txt # Modern CMake configuration
│ ├── ImageCopy.cxx # ITK image copying example
│ ├── ImageCompare.cxx # ITK image comparison example
│
├── data/ # Input datasets and test data
│ └── img1.png # Sample image data
│
├── build/ # Build artifacts (auto-generated)
│ ├── ITK/ # ITK source code (if using C++ features)
│ ├── ITK-build/ # ITK build artifacts
│ └── project-build/ # Project build artifacts
│
├── _build/ # MyST build outputs
│ ├── html/ # HTML documentation
│ └── exports/ # PDF, DOCX, MECA exports
│
├── .github/workflows/ # CI/CD automation
├── myst.yml # MyST project configuration
├── pixi.toml # Dependency and task management
├── pixi.lock # Locked dependency versions
└── README.md # This file
The project uses Pixi for dependency management and task automation. All tasks can be run with pixi run <task-name>
:
Task | Description |
---|---|
build-html |
Generate interactive HTML documentation |
build-pdf |
Build PDF using Typst (no LaTeX required) |
build-arxiv |
Build PDF with arXiv formatting (requires LaTeX distribution) |
build-tex |
Generate LaTeX source files |
build-docx |
Export to Microsoft Word format |
build-cff |
Generate CITATION.cff file |
Task | Description |
---|---|
build-manuscript |
Build HTML, PDF, and citation file |
build-pdfs |
Build both Typst and arXiv PDFs |
build-meca |
Create complete MECA archive for journal submission |
verify-meca |
Build MECA and verify bundle reproducibility |
build |
Main build task - builds manuscript and tests project |
Task | Description |
---|---|
start |
Start live development server with hot reload |
dev |
Alias for development server |
clean |
Remove all build artifacts |
To work with the ITK C++ examples, use the cxx
environment:
# Activate C++ environment
pixi shell -e cxx
# Or run tasks directly in C++ environment
pixi run -e cxx <task-name>
Task | Description |
---|---|
clone-itk |
Download ITK source code |
configure-itk |
Configure ITK build with CMake |
build-itk |
Compile ITK libraries |
configure-project |
Configure project against built ITK |
build-src |
Compile project executables |
test-src |
Run project test suite |
Build manuscript only:
pixi run build-manuscript
Full development cycle:
# Start development server
pixi run start
# In another terminal, build and test everything
pixi run build
Work with C++ code:
# Build ITK and project code
pixi run -e cxx build-src
# Run tests
pixi run -e cxx test-src
Create journal submission:
# Generate complete MECA package
pixi run build-meca
Verify MECA bundle reproducibility:
# Build MECA, unpack it, and verify the bundle builds correctly
pixi run verify-meca
All source code in this repository is distributed under the Apache 2.0 License. Please see the LICENSE file for details.
All documents and works of art in this repository are distributed under the Creative Commons by Attribution License 4.0.