Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/latexmk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: LaTeX PDF Build

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3

# Step 2: Install LaTeX tools and missing packages
- name: Install LaTeX and required packages
run: |
sudo apt-get update
sudo apt-get install -y texlive texlive-latex-extra texlive-fonts-recommended texlive-xetex latexmk
sudo apt-get install -y texlive-fonts-extra texlive-science texlive-pstricks

# Step 3: Install make (required to run your Makefile)
- name: Install make
run: sudo apt-get install make

# Step 4: Build the PDF using the Makefile
- name: Build PDF using Makefile
run: make

# Step 5: Upload the generated PDF as an artifact
- name: Upload PDF artifact
uses: actions/upload-artifact@v3
with:
name: lammps-tutorials-pdf
path: lammps-tutorials.pdf
15 changes: 0 additions & 15 deletions .github/workflows/latexmk_yml

This file was deleted.

7 changes: 5 additions & 2 deletions DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@ within the solution repository located in each tutorial folder.

## Link

Access the `.pdf` from [this link](lammps-tutorials.pdf), or clone this repository
and compile the `.tex` file yourself by typing in a terminal:
https://github.com/lammpstutorials/lammpstutorials-article/actions/runs/12458522247/artifacts/2354075042

Access the last version of the `.pdf` from
[the Actions tab](https://github.com/lammpstutorials/lammpstutorials-article/actions/runs/12458522247/artifacts/2354075042),
or clone this repository and compile the `.tex` file yourself by typing in a terminal:

```
make
Expand Down
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,11 @@ within the solution repository located in each tutorial folder.

## Link

Access the `.pdf` from [this link](lammps-tutorials.pdf), or clone this repository
and compile the `.tex` file yourself by typing in a terminal:
https://github.com/lammpstutorials/lammpstutorials-article/actions/runs/12458522247/artifacts/2354075042

Access the last version of the `.pdf` from
[the Actions tab](https://github.com/lammpstutorials/lammpstutorials-article/actions/runs/12458522247/artifacts/2354075042),
or clone this repository and compile the `.tex` file yourself by typing in a terminal:

```
make
Expand All @@ -52,27 +55,27 @@ more useful for everyone.

## License

This project is licensed under the [Creative Commons BY 4.0](https://creativecommons.org/licenses/by/4.0/) License.
For more details, see the [LICENSE](LICENSE) file.
This project is licensed under the XXX License - see the
[LICENSE](LICENSE) file for details.

## Authors

- [Simon Gravelle](https://github.com/simongravelle) (corresponding author),
Univ. Grenoble Alpes, CNRS, LIPhy, 38000 Grenoble, France
- [Simon Gravelle](https://github.com/simongravelle) (corr. author),
Université Grenoble Alpes, CNRS, LIPhy, 38000 Grenoble, France.
- [Jacob R. Gissinger](https://www.stevens.edu/profile/jgissing),
Stevens Institute of Technology, Hoboken, NJ 07030, USA
Stevens Institute of Technology, Hoboken, NJ 07030, USA.
- [Axel Kohlmeyer](https://sites.google.com/site/akohlmey),
Institute for Computational Molecular Science, Temple University, Philadelphia,
PA 19122, USA
PA 19122, USA.



## Acknowledgements

- Simon Gravelle acknowledges funding from the European Union's Horizon 2020
research and innovation programme under the Marie Skłodowska-Curie grant
agreement No 101065060.
- Axel Kohlmeyer acknowledges financial support by Sandia National Laboratories
agreement 101065060.
- Axel Kohlmeyer acknowledges financial support from Sandia National Laboratories
under POs 2149742 and 2407526.


2 changes: 1 addition & 1 deletion dependencies/.github
2 changes: 0 additions & 2 deletions lammps-tutorials.tex
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@
\usepackage[title]{appendix}
\usepackage{csquotes}

% \usepackage{inconsolata} % Load a font with no ligatures

\usepackage[
type={CC},
modifier={by-nc-sa},
Expand Down
Loading