Quantum Espresso - Example 01#

Introduction#

[Introduction paragraph]

Section 1#

[Content of section 1]

Subsection 1.1#

[Content of subsection 1.1]

Subsection 1.2#

[Content of subsection 1.2]

Section 2#

[Content of section 2]

Subsection 2.1#

[Content of subsection 2.1]

Subsection 2.2#

[Content of subsection 2.2]

Conclusion#

[Conclusion paragraph]

References#

  1. Reference 1

  2. Reference 2

  3. Reference 3

Additional Resources#

Table#

Column 1 Header

Column 2 Header

Column 3 Header

Row 1 Cell 1

Row 1 Cell 2

Row 1 Cell 3

Row 2 Cell 1

Row 2 Cell 2

Row 2 Cell 3

Row 3 Cell 1

Row 3 Cell 2

Row 3 Cell 3

Code#

def factorial(n):
    if n == 0 or n == 1:
        return 1
    else:
        return n * factorial(n-1)

number = 5
result = factorial(number)
print(f"The factorial of {number} is: {result}")

Special blocks#

Note

Here is a note!

Warning

Here’s a warning!

Here’s your admonition

Here’s the admonition content

This admonition was styled…

With a tip class!

Here is a cool quotation.

—Jo the Jovyan

Term one#

An indented explanation of term 1

A second term#

An indented explanation of term2