phonopy/doc
Atsushi Togo 48f4be65ed Set version 2.37.0 2025-02-07 18:28:01 +09:00
..
_static
Al-QHA.png
Cu-QHA.png
Fleur.rst
Makefile
NaCl-PDOS-nac.png
NaCl-PDOS.png
NaCl-VASPdfpt.png
NaCl-band-NAC.png
NaCl-band-PDOS-NAC.png
NaCl-band.png
NaCl-crystal-band-NAC.png
NaCl-disp-dist.png
NaCl-pwscf-band-NAC.png
NaCl-pwscf-band.png
NaCl-q2r-band-NAC.png
QHA.png
README.md
Si-DOS.png
Si-QHA.png
Si-TURBOMOLE-band.png
Si-crystal-band.png
Si-gruneisen-band.png
Si-gruneisen-mesh.png
Si-props.png
SnO2-GZG-offset.png
SnO2-GZG.png
Ubuntu-install.png
abacus.rst
abinit.rst
aims.rst
animation.md
auxiliary-tools.md
band-connection.png
band-labels.png
band.png
castep.rst
changelog.md Set version 2.37.0 2025-02-07 18:28:01 +09:00
citation.md
command-options.md Refactor SSCHA feature 2024-11-30 16:16:31 +09:00
conf.py Set version 2.37.0 2025-02-07 18:28:01 +09:00
cp2k.rst
crystal.rst
dftb+.rst
documentation.md
dynamic-structure-factor.md
elk.rst
examples.md
external-tools.md
formulation.md
gruneisen.md
index.md Implement SSCHA free energy 2024-12-01 20:01:59 +09:00
input-files.md
install.md [pre-commit.ci] auto fixes from pre-commit.com hooks 2025-02-04 17:32:36 +00:00
interfaces.md
lammps.md
mlp-sscha.md Change default disp-distance for pypolymlp 2025-01-19 17:51:47 +09:00
output-files.md
pdos.png
phonondb-mp-661.png
phonopy-load.md Refactor phonopy-load command and document 2024-11-10 10:17:23 +09:00
phonopy-logo.png
phonopy-module.md Update documentation for phonopy.load 2025-02-01 20:42:59 +09:00
phonopy-slide-top.png
phonopy-yaml.md
procedure.png
qe.md
qha.md
random-displacements.md
reference.md Update documentation 2025-01-08 14:13:52 +09:00
rotation-C4.png
setting-tags.md Set version 2.32.0 2024-12-05 14:56:45 +09:00
siesta.rst
symmetry.md
thermalprop.png
turbomole.rst
vasp-dfpt.md
vasp.md
vitualbox-fromimage.png
wien2k.rst
workflow.md

README.md

How to write phonopy 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.
  • *.inc are the files included in the other *.rst files.

How to publish

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

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

From the directory the sphinx doc is complied,

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

Again, at the phonopy github top directory,

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