phono3py/doc
Atsushi Togo 650adff94d Update pypolymlp doc 2024-09-20 14:25:17 +09:00
..
_static
Makefile
README.md
Si-JDOS.png
Si-coleigplot.png
Si-convergence.png
Si-kaccum-MFP.png
Si-kaccum-m191919.png
Si-kaccum-pwscf.png
Si-kaccum.png
Si-kdeplot-OrRd.png
Si-kdeplot-bwr.png
Si-kdeplot-gnuplot.png
Si-kdeplot-hsv.png
Si-kdeplot-jet.png
Si-kdeplot-seismic.png
Si-kdeplot.png
auxiliary-tools.md Update doc 2024-08-08 11:19:11 +09:00
changelog.md Set version 3.5.1 2024-09-19 16:29:22 +09:00
citation.md
command-options.md Display interface mode in CLI 2024-08-31 21:58:57 +09:00
conf.py Set version 3.5.1 2024-09-19 16:29:22 +09:00
crystal.md Update doc 2024-08-08 11:19:11 +09:00
cutoff-pair.md Update doc 2024-08-08 11:19:11 +09:00
direct-solution.md
examples.md
external-tools.md
hdf5_howto.md
index.md Add document for pypolymlp interface 2024-09-19 16:14:53 +09:00
input-output-files.md
install.md Update installation doc 2024-07-27 12:13:00 +09:00
interfaces.md
phono3py-api.md
phono3py-load.md Update doc 2024-08-08 11:19:11 +09:00
procedure.png
pypolymlp.md Update pypolymlp doc 2024-09-20 14:25:17 +09:00
qe.md Update doc 2024-08-08 11:19:11 +09:00
random-displacements.md Update doc 2024-08-08 11:19:11 +09:00
reference.md
references.bib
tc_Wigner_La2Zr2O7.png
tips.md
turbomole.md Update doc 2024-08-08 11:19:11 +09:00
vasp.md Update doc 2024-08-08 11:19:11 +09:00
wigner-solution.md Update doc 2024-08-08 11:19:11 +09:00
workflow.md
workload-distribution.md Update doc 2024-08-08 11:19:11 +09:00

README.md

How to write phono3py documentation

This directory contains python-sphinx documentation source.

How to compile

make html

Source files

  • conf.py contains the sphinx setting confiuration.
  • *.rst are the usual sphinx documentation source and the filenames without .rst are the keys to link from toctree mainly in index.rst.

How to publish

Web page files are copied to gh-pages branch. At the phono3py github top directory,

git checkout gh-pages
rm -r .buildinfo .doctrees *

From the directory the sphinx doc is complied,

rsync -avh _build/ <phono3py-repository-directory>/

Again, at the phono3py github top directory,

git add .
git commit -a -m "Update documentation ..."
git push