Skip to content

Commit 7212464

Browse files
committed
Fix topocm#165, order of panels in gapless.ipynb
1 parent 774b084 commit 7212464

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

w10_extensions/gapless.ipynb

+4-2
Original file line numberDiff line numberDiff line change
@@ -382,12 +382,14 @@
382382
"sys2 = d_wave(50, direction='triv')\n",
383383
"\n",
384384
"det_plot = plot_dets(sys0, p, ks, chiral=True)\n",
385-
"det_plot1 = det_plot * holoviews.VLine(k) * holoviews.VLine(-k)\n",
386-
"det_plot2 = (det_plot *\n",
385+
"\n",
386+
"det_plot1= (det_plot *\n",
387387
" holoviews.Curve(([-np.pi, np.pi], [np.pi, -np.pi])) *\n",
388388
" holoviews.Curve(([-np.pi, np.pi-2*k], [np.pi-2*k, -np.pi])) *\n",
389389
" holoviews.Curve(([-np.pi+2*k, np.pi], [np.pi, -np.pi+2*k]))).relabel('$\\det(h)$')\n",
390390
"\n",
391+
"det_plot2 = det_plot * holoviews.VLine(k) * holoviews.VLine(-k)\n",
392+
"\n",
391393
"kwargs = dict(k_x=ks, ylims=[-2, 2], xticks=pi_ticks, yticks=3)\n",
392394
"\n",
393395
"(spectrum(sys1, p, title='Ribbon with edge states', **kwargs) * holoviews.VLine(-2*k) * holoviews.VLine(2*k) +\n",

0 commit comments

Comments
 (0)