phono3py/doc
Atsushi Togo 7864c746d9 Picked updated files from rc 2021-02-22 07:54:55 +09:00
..
Makefile Update document for v1.18.2 2019-12-22 17:49:56 +09:00
README.md Update README.md 2019-12-22 18:12:53 +09:00
Si-JDOS.png Documentation update 2019-03-14 17:03:36 +09:00
Si-coleigplot.png Update document for LBTE 2018-04-10 16:31:55 +09:00
Si-convergence.png Add a figure for document 2016-11-27 13:38:34 +09:00
Si-kaccum-MFP.png Update document for kaccum 2016-11-26 23:05:29 +09:00
Si-kaccum-m191919.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kaccum-pwscf.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kaccum.png Documentation update 2019-03-14 17:03:36 +09:00
Si-kdeplot-OrRd.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-bwr.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-gnuplot.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-hsv.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-jet.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot-seismic.png --zmax option is made for kdeplot. 2017-06-12 16:00:53 +02:00
Si-kdeplot.png Update document slightly for kdeplot 2016-11-30 20:33:09 +09:00
auxiliary-tools.rst Commit files that were forgotten to be committed. 2020-01-11 12:57:44 +09:00
changelog.rst Picked updated files from rc 2021-02-22 07:54:55 +09:00
citation.rst Fix citation for Laurent's direct solution 2020-07-14 18:37:19 +09:00
command-options.rst Updated document for --nu option usage 2020-09-04 09:42:07 +09:00
conf.py Picked updated files from rc 2021-02-22 07:54:55 +09:00
crystal.rst Phono3py github repostory was moved to phonopy/phono3py from atztogo/phono3py. These updates were made following this migration. 2020-05-02 16:50:52 +09:00
cutoff-pair.rst Update cutoff-pair documentation 2020-04-18 11:31:54 +09:00
direct-solution.rst Update of LBTE document 2018-10-08 11:04:00 +09:00
examples.rst Phono3py github repostory was moved to phonopy/phono3py from atztogo/phono3py. These updates were made following this migration. 2020-05-02 16:50:52 +09:00
external-tools.rst Updated sscha code 2020-08-24 17:35:40 +09:00
hdf5_howto.rst Updated document for --nu option usage 2020-09-04 09:36:05 +09:00
index.rst Phono3py github repostory was moved to phonopy/phono3py from atztogo/phono3py. These updates were made following this migration. 2020-05-02 16:50:52 +09:00
install.rst Update document 2020-08-24 07:13:43 +09:00
interfaces.rst Commit files that were forgotten to be committed. 2020-01-11 12:57:44 +09:00
output-files.rst Update document 2018-03-15 18:11:22 +09:00
qe.rst Phono3py github repostory was moved to phonopy/phono3py from atztogo/phono3py. These updates were made following this migration. 2020-05-02 16:50:52 +09:00
tips.rst Set version v1.17.0 and update documentation for v1.17.0 2019-04-18 11:55:20 +09:00
turbomole.rst Phono3py github repostory was moved to phonopy/phono3py from atztogo/phono3py. These updates were made following this migration. 2020-05-02 16:50:52 +09:00
vasp.rst Update document for removal of --tsym 2018-02-01 15:42:43 +09:00
workload-distribution.rst Update document for removal of --tsym 2018-02-01 15:42:43 +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