-
Notifications
You must be signed in to change notification settings - Fork 1
resolves 4 and 5: add support for devcontainer and add poster template #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
de851ff
Add development container configuration for LaTeX project
prudhomm fc66b35
Add poster template for LaTeX project and update .gitignore
prudhomm 42eecd1
Add poster compilation step to GitHub Actions workflow
prudhomm d334cac
Enhance README and CLI with build instructions; update poster templat…
prudhomm 68648dc
Fix mathematical notation in poster and presentation templates
prudhomm 96c0e13
Update .gitignore, enhance Dockerfile with Inkscape, and modify LaTeX…
prudhomm 2bdd1e2
Refactor beamer theme styles and update poster template with new titl…
prudhomm 6774632
Add new color definitions and enhance block styling in Beamer theme a…
prudhomm 760d426
Add new Roboto and Marianne font files; update .gitignore and modify …
prudhomm 2666732
Add fonts directory to GitHub Actions workflow for LaTeX compilation
prudhomm 120c4df
Update README.md with enhanced setup instructions, font installation …
prudhomm 7559144
removed dependency on includesvg
abuttari File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| FROM qmcgaw/latexdevcontainer:latest-full | ||
|
|
||
| RUN apt update -y && apt install git fontconfig inkscape -y |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,165 @@ | ||
| { | ||
| "name": "huangfusl-latex-template", | ||
| "dockerComposeFile": ["docker-compose.yml"], | ||
| "service": "vscode", | ||
| "runServices": ["vscode"], | ||
| "shutdownAction": "stopCompose", | ||
| "workspaceFolder": "/workspace", | ||
| "postCreateCommand": "", | ||
| "customizations": { | ||
| "codespaces": { | ||
| "extensions": [ | ||
| // Copilot | ||
| "GitHub.copilot", | ||
| "GitHub.copilot-chat", | ||
| // LaTeX | ||
| "james-yu.latex-workshop", | ||
| // Git | ||
| "eamodio.gitlens", | ||
| // Other helpers | ||
| "shardulm94.trailing-spaces", | ||
| "stkb.rewrap", // rewrap comments after n characters on one line | ||
| // Other | ||
| "PKief.material-icon-theme", | ||
| "Equinusocio.vsc-material-theme" | ||
| ], | ||
| "settings": { | ||
| // General settings | ||
| "files.eol": "\n", | ||
| "[latex]": { | ||
| "editor.defaultFormatter": "James-Yu.latex-workshop" | ||
| }, | ||
| "github.copilot.enable": { | ||
| "latex": false | ||
| }, | ||
| "editor.wordWrap": "on", | ||
| "files.autoSave": "onFocusChange", | ||
| "files.autoSaveDelay": 150000, | ||
| "workbench.colorTheme": "Material Theme Ocean", | ||
| "workbench.iconTheme": "material-icon-theme", | ||
| // Latex settings | ||
| "latex-workshop.linting.chktex.enabled": true, | ||
| "latex-workshop.latex.clean.subfolder.enabled": true, | ||
| "latex-workshop.latex.autoClean.run": "onFailed", | ||
| "editor.formatOnSave": true, | ||
| "files.associations": { | ||
| "*.tex": "latex" | ||
| }, | ||
| "latex-workshop.latexindent.path": "latexindent", | ||
| "latex-workshop.latexindent.args": [ | ||
| "-c", | ||
| "%DIR%/", | ||
| "%TMPFILE%", | ||
| "-y=defaultIndent: '%INDENT%'" | ||
| ], | ||
| "latex-workshop.latex.recipes": [ | ||
| { "name": "Build", "tools": ["XeTeX"] }, | ||
| { | ||
| "name": "Build (bib)", | ||
| "tools": ["XeTeX", "BibTeX", "XeTeX", "XeTeX"] | ||
| } | ||
| ], | ||
| "latex-workshop.latex.tools": [ | ||
| { | ||
| "name": "XeTeX", | ||
| "command": "xelatex", | ||
| "args": [ | ||
| "-synctex=1", | ||
| "-shell-escape", | ||
| "-interaction=nonstopmode", | ||
| "-file-line-error", | ||
| "%DOCFILE%" | ||
| ] | ||
| }, | ||
| { | ||
| "name": "BibTeX", | ||
| "command": "bibtex", | ||
| "args": ["%DOCFILE%"] | ||
| } | ||
| ], | ||
| "latex-workshop.linting.run": "onType", | ||
| "latex-workshop.view.pdf.viewer": "tab", | ||
| "latex-utilities.countWord.args": ["%DOCFILE%"], | ||
| "latex-utilities.countWord.format": "${words} Words in Total, ${wordsBody} Words in Body", | ||
| "latex-utilities.countWord.path": "texcount" | ||
| } | ||
| }, | ||
| "vscode": { | ||
| "extensions": [ | ||
| // Copilot | ||
| "GitHub.copilot", | ||
| "GitHub.copilot-chat", | ||
| // LaTeX | ||
| "james-yu.latex-workshop", | ||
| // Git | ||
| "eamodio.gitlens", | ||
| // Other helpers | ||
| "shardulm94.trailing-spaces", | ||
| "stkb.rewrap", // rewrap comments after n characters on one line | ||
| // Other | ||
| "PKief.material-icon-theme", | ||
| "Equinusocio.vsc-material-theme" | ||
| ], | ||
| "settings": { | ||
| // General settings | ||
| "files.eol": "\n", | ||
| "[latex]": { | ||
| "editor.defaultFormatter": "James-Yu.latex-workshop" | ||
| }, | ||
| "github.copilot.enable": { | ||
| "latex": false | ||
| }, | ||
| "editor.wordWrap": "on", | ||
| "files.autoSave": "onFocusChange", | ||
| "files.autoSaveDelay": 150000, | ||
| "workbench.colorTheme": "Material Theme Ocean", | ||
| "workbench.iconTheme": "material-icon-theme", | ||
| // Latex settings | ||
| "latex-workshop.linting.chktex.enabled": true, | ||
| "latex-workshop.latex.clean.subfolder.enabled": true, | ||
| "latex-workshop.latex.autoClean.run": "onFailed", | ||
| "editor.formatOnSave": true, | ||
| "files.associations": { | ||
| "*.tex": "latex" | ||
| }, | ||
| "latex-workshop.latexindent.path": "latexindent", | ||
| "latex-workshop.latexindent.args": [ | ||
| "-c", | ||
| "%DIR%/", | ||
| "%TMPFILE%", | ||
| "-y=defaultIndent: '%INDENT%'" | ||
| ], | ||
| "latex-workshop.latex.recipes": [ | ||
| { "name": "Build", "tools": ["XeTeX"] }, | ||
| { | ||
| "name": "Build (bib)", | ||
| "tools": ["XeTeX", "BibTeX", "XeTeX", "XeTeX"] | ||
| } | ||
| ], | ||
| "latex-workshop.latex.tools": [ | ||
| { | ||
| "name": "XeTeX", | ||
| "command": "xelatex", | ||
| "args": [ | ||
| "-synctex=1", | ||
| "-shell-escape", | ||
| "-interaction=nonstopmode", | ||
| "-file-line-error", | ||
| "%DOCFILE%" | ||
| ] | ||
| }, | ||
| { | ||
| "name": "BibTeX", | ||
| "command": "bibtex", | ||
| "args": ["%DOCFILE%"] | ||
| } | ||
| ], | ||
| "latex-workshop.linting.run": "onType", | ||
| "latex-workshop.view.pdf.viewer": "tab", | ||
| "latex-utilities.countWord.args": ["%DOCFILE%"], | ||
| "latex-utilities.countWord.format": "${words} Words in Total, ${wordsBody} Words in Body", | ||
| "latex-utilities.countWord.path": "texcount" | ||
| } | ||
| } | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| version: "3.2" | ||
|
|
||
| services: | ||
| vscode: | ||
| build: . | ||
| image: latexdevcontainer | ||
| volumes: | ||
| - ../:/workspace | ||
| # Docker socket to access Docker server | ||
| - /var/run/docker.sock:/var/run/docker.sock | ||
| # SSH directory | ||
| - ~/.ssh:/root/.ssh | ||
| # For Windows without WSL, a copy will be made | ||
| # from /tmp/.ssh to ~/.ssh to fix permissions | ||
| # - ~/.ssh:/tmp/.ssh:ro | ||
| # Shell history persistence | ||
| - ~/.zsh_history:/root/.zsh_history:z | ||
| environment: | ||
| - TZ= | ||
| entrypoint: ["zsh", "-c", "while sleep 1000; do :; done"] | ||
|
|
||
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The environment variable 'TZ' is set to an empty value, which might lead to unexpected timezone behavior. Provide a valid timezone or remove the variable if it's not needed.