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., Document Syntax 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 Parts of commands. Whole expression for the command line are given as

osmps@manual:~$ echo 'Hello World'

Code snippets may be syntax highlighted and include line numbers as appropriate. General expression is python are represented as

print('this text into python') # additional comments

while we use >> to show that the example is for the command line python interpreter:

>> print('this text')

And inputs into fortran will look like:

print *, 'this text into fortran' ! additional comments