diff --git a/src/7_tight_binding_model_sol.md b/src/7_tight_binding_model_sol.md index bc68e05a97327e9be9ca8da38f48ebf8ab309f44..9326044fda8b777f6a897f369bbae684f8e08cbc 100644 --- a/src/7_tight_binding_model_sol.md +++ b/src/7_tight_binding_model_sol.md @@ -59,11 +59,11 @@ Hint: The group velocity is given as $v = \frac{d\omega}{dk}$, draw a coordinate ??? hint "Plot for density of states" - ```python - k = np.linspace(0,pi/2,1000) - w = 4*np.sin(k) + np.sin(3*k) - pyplot.hist(w,50, orientation='horizontal',ec='black') - pyplot.ylabel(r'$\omega$') - pyplot.xlabel(r'$g(\omega)$') - ``` +```python +k = np.linspace(0,pi/2,1000) +w = 4*np.sin(k) + np.sin(3*k) +pyplot.hist(w,50, orientation='horizontal',ec='black') +pyplot.ylabel(r'$\omega$') +pyplot.xlabel(r'$g(\omega)$') +```