Belle II Software development
SubSection Class Reference
Inheritance diagram for SubSection:
LatexObject

Public Member Functions

def __init__ (self, name)
 

Detailed Description

Adds a new subsection to your latex code.

Definition at line 288 of file b2latex.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  name 
)
Calls super-class init and adds necessary latex commands to output.

Reimplemented from LatexObject.

Definition at line 293 of file b2latex.py.

293 def __init__(self, name):
294 """
295 Calls super-class init and adds necessary latex commands to output.
296 """
297 super().__init__()
298 self.output += r"\subsection{" + str(name) + r"}" + '\n'
299
300

The documentation for this class was generated from the following file: