diff --git a/doc/src/Classes.rst b/doc/src/Classes.rst index 4b50eef7b2..6bcc30971b 100644 --- a/doc/src/Classes.rst +++ b/doc/src/Classes.rst @@ -1,5 +1,5 @@ -LAMMPS C++ base classes -======================= +C++ base classes +================ LAMMPS is designed to be used as a C++ class library where one can set up and drive a simulation through creating a class instance and then diff --git a/doc/src/Developer_org.rst b/doc/src/Developer_org.rst index c7717e5ac0..abfe72260a 100644 --- a/doc/src/Developer_org.rst +++ b/doc/src/Developer_org.rst @@ -1,5 +1,5 @@ -LAMMPS source files -------------------- +Source files +------------ The source files of the LAMMPS code are found in two directories of the distribution: ``src`` and ``lib``. @@ -46,8 +46,8 @@ class. They are discussed in the next section. A small number of C++ classes and utility functions are implemented with only a ``.h`` file. Examples are the Pointer class or the MathVec functions. -LAMMPS class topology ---------------------- +Class topology +-------------- Though LAMMPS has a lot of source files and classes, its class topology is relative flat, as outlined in the :ref:`class-topology` figure. Each diff --git a/doc/src/Developer_utils.rst b/doc/src/Developer_utils.rst index b1c909b02a..bf1cca7413 100644 --- a/doc/src/Developer_utils.rst +++ b/doc/src/Developer_utils.rst @@ -1,6 +1,6 @@ -LAMMPS utility functions ------------------------- +Utility functions +----------------- The ``utils`` sub-namespace inside the ``LAMMPS_NS`` namespace provides a collection of convenience functions and utilities that perform common diff --git a/doc/src/Developer_write.rst b/doc/src/Developer_write.rst index e409ef0dbd..5e0f9d12bb 100644 --- a/doc/src/Developer_write.rst +++ b/doc/src/Developer_write.rst @@ -1,5 +1,5 @@ -Writing LAMMPS styles ---------------------- +Writing new styles +------------------ The :doc:`Modify` section of the manual gives an overview of how LAMMPS can be extended by writing new classes that derive from existing