The structure of 4 layers of MoS2 may be created by defining three lattice vectors and calling UnitCell(defined three lattice vectors), e.g.,
vector_a = [1.5802, -2.73699, 0.0]*Angstrom
vector_b = [1.5802, 2.73699, 0.0]*Angstrom
vector_c = [0.0, 0.0, 60.0]*Angstrom
lattice = UnitCell(vector_a, vector_b, vector_c)
You can alternatively define a hexagonal Bravias lattice by calling Hexagonal(a=xx *Angstrom, c=xxx*Angstrom). e.g.,
lattice = Hexagonal(3.1604*Angstrom, 12.295*Angstrom)
You have to edit the script file and change the definition of lattice.
In this way, you can choose the K and M points in band structure analyser.