You can first extract the .tex from your .ipynb file, and then edit it using the latex interface.
1) in your terminal use the following code:
ipython nbconvert --to latex your_notebook.ipynb
2) Open the file in the LaTeX interface and use the command below to change the appearance in landscape orientation:
\documentclass[a4paper,landscape]{article}
source share