phonopy/doc
Atsushi Togo 4282e9dc8f Set version 2.38.0 2025-03-03 11:28:21 +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.38.0 2025-03-03 11:28:21 +09:00
citation.md
command-options.md Refactor SSCHA feature 2024-11-30 16:16:31 +09:00
conf.py Set version 2.38.0 2025-03-03 11:28:21 +09:00
cp2k.rst Documentation cp2k.rst mod to explain xyz workflow 2025-02-23 23:47:11 +03:00
crystal.rst
dftb+.rst
documentation.md
dynamic-structure-factor.md
elk.rst
examples.md Update doc 2024-08-26 10:28:53 +09:00
external-tools.md
formulation.md Update doc 2024-08-26 10:28:53 +09:00
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 Update pypolymlp doc 2025-03-03 11:23:21 +09:00
output-files.md Minor fix of documentation 2024-09-05 20:57:39 +09:00
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 Update doc 2024-08-26 10:28:53 +09:00
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