feat(init): add project type support for presentations and posters#7
Merged
feat(init): add project type support for presentations and posters#7
Conversation
- Add --type option (article, presentation, poster) to init command - Add --theme and --aspect-ratio options for Beamer presentations - Create type-specific LaTeX templates (article, Beamer, tikzposter) - Configure XeLaTeX as default engine for presentations/posters - Update VS Code settings with XeLaTeX recipes for presentations - Add presentation/poster sections to pyproject.toml configuration - Add comprehensive test suite for repository setup (30 tests) Closes #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds support for different project types (article, presentation, poster) to the
article-cli initcommand.Changes
CLI Options
--typeoption with choices: article, presentation, poster--themeoption for Beamer themes (e.g., metropolis, numpex)--aspect-ratiooption for presentations (169, 43, 1610)Templates
Configuration
get_project_config()method to Config classget_presentation_config()method for Beamer settingsget_poster_config()method for poster settingsVS Code Integration
Tests
tests/test_repository_setup.pyTest Results
Closes #2