Skip to content

Commit 213e115

Browse files
author
corochann
committed
first commit
0 parents  commit 213e115

File tree

163 files changed

+421060
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+421060
-0
lines changed

LICENSE

+396
Large diffs are not rendered by default.

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# atomistic-simulation-tutorial
2+
3+
Atomistic simulation hands on tutorial on [Matlantis](https://matlantis.com/)
4+
5+
## Document
6+
7+
Please refer the document page:
8+
9+
- https://docs.matlantis.com/atomistic-simulation-tutorial/ja/index.html
10+
11+
Currently, only Japanese version is available.
12+
13+
## LICENSE
14+
<a rel="license" href="http://creativecommons.org/licenses/by/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.

docs/Makefile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
LANG ?=ja
8+
SPHINXBUILD ?= poetry run sphinx-build
9+
SOURCEDIR = ./
10+
BUILDDIR = build
11+
12+
# Put it first so that "make" without argument is like "make help".
13+
help:
14+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)/tutorials/$(LANG)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
15+
16+
.PHONY: help Makefile
17+
18+
# Catch-all target: route all unknown targets to Sphinx using the new
19+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
20+
%: Makefile
21+
rm -rf "./$(BUILDDIR)"
22+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)/tutorials/$(LANG)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
23+
cp -r "../tutorials/$(LANG)/output" "$(BUILDDIR)/html/output"
24+
cp "./_static/js/plotly.js" "$(BUILDDIR)/html/"

docs/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Build system by sphinx
2+
3+
# Setup
4+
5+
## Requirement
6+
7+
1. Install pandoc to your OS
8+
2. Install poetry
9+
3. Install packages by poetry
10+
11+
```sh
12+
$ poetry install
13+
```
14+
15+
# Build static files
16+
17+
You can choose a language for build from `ja` or `en`.
18+
19+
```sh
20+
$ poetry run make html -e LANG="ja"
21+
```

docs/_static/1_1_welcome.ipynb

+280
Large diffs are not rendered by default.

docs/_static/css/custom.css

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.md-header-nav__button {
2+
padding: 0;
3+
}
4+
5+
.md-header-nav__button img {
6+
width: 143px;
7+
height: auto;
8+
margin-top: 11px;
9+
}
10+
11+
.md-header, .md-hero, .md-tabs {
12+
background: rgb(6,27,43);
13+
background: linear-gradient(90deg, rgba(6,27,43,1) 11%, rgba(19,45,65,1) 36%, rgba(2,13,28,1) 100%);
14+
}
15+
16+
@media only screen and (max-width: 76.1875em) {
17+
.md-nav--primary .md-nav__title--site {
18+
background: rgba(2,13,28,1) !important;
19+
}
20+
21+
.md-nav__source {
22+
background: rgba(19,45,65,1) !important;
23+
}
24+
}
25+
26+
.md-header-nav__topic {
27+
height: 57px;
28+
font-size: 22px;
29+
line-height: 57px;
30+
}
31+
32+
.md-icon.md-icon--menu.md-header-nav__button {
33+
margin-top: 17px;
34+
}
6.39 KB
Loading

0 commit comments

Comments
 (0)