phono3py/doc
Atsushi Togo d86b3ed24d Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:30:21 +09:00
..
_static
Makefile
README.md address @atztogo PR comments 2025-02-05 05:41:32 -05:00
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 fix typos and add codespell pre-commit hooks to catch future typos 2025-02-04 13:41:45 -05:00
changelog.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
citation.md
command-options.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
conf.py Set version 3.15.1 2025-04-30 21:17:20 +09:00
crystal.md
cutoff-pair.md missed some 2025-02-05 05:47:27 -05:00
direct-solution.md fix typos and add codespell pre-commit hooks to catch future typos 2025-02-04 13:41:45 -05:00
examples.md
external-tools.md
grid.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:30:21 +09:00
hdf5_howto.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
index.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
input-output-files.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
install.md Set version 3.11.1 2025-01-12 10:16:42 +09:00
interfaces.md
phono3py-api.md Update document to read pp-*.hdf5 and handling triplets 2025-05-20 19:20:24 +09:00
phono3py-load.md missed some 2025-02-05 05:47:27 -05:00
procedure.png
pypolymlp.md Update pypolymlp doc 2025-03-03 11:19:45 +09:00
qe.md
random-displacements.md missed some more 2025-02-05 05:50:52 -05:00
reference.md
references.bib
tc_Wigner_La2Zr2O7.png
turbomole.md
vasp.md
wigner-solution.md
workflow.md
workload-distribution.md Set version 3.11.1 2025-01-12 10:16:42 +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 configuration.
  • *.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