.. _sec_docusyntax: Document Syntax =============== For convenience, there are a number of links found through out the manual: Internal hyperlinks to other parts of this document are marked in blue, e.g., :ref:`sec_docusyntax` as well as hyperlinks to external websites are marked in blue, e.g., `link `_. Throughout the manual we display code or code snippets. Parts of commands are given in :command:`Parts of commands`. Whole expression for the command line are given as .. code-block:: bash osmps@manual:~$ echo 'Hello World' Code snippets may be syntax highlighted and include line numbers as appropriate. General expression is python are represented as .. code-block:: python print('this text into python') # additional comments while we use :math:`>>` to show that the example is for the command line python interpreter: .. code-block:: python >> print('this text') And inputs into fortran will look like: .. code-block:: fortran print *, 'this text into fortran' ! additional comments