131

By default the ipython notebook ouput is limited to a small sub window at the bottom. This makes us force to use separate scroll bar that comes with the output window, when the output is big.

Any configuration option to make it not limited in size, instead run as high as the actual output is? Or option to resize it once it gets created?

4

10 に答える 10

280

ノートブックのメイン メニューでスクロール ウィンドウを切り替えることができます。

セル -> 現在の出力 -> スクロールの切り替え

于 2016-08-01T17:05:08.570 に答える
16

これはChromeでうまくいきました。別のセルで実行します。スクロールせずに表示する最大高さを選択します。

%%html
<style>
.output_wrapper, .output {
    height:auto !important;
    max-height:1000px;  /* your desired max-height here */
}
.output_scroll {
    box-shadow:none !important;
    webkit-box-shadow:none !important;
}
</style>

コンテンツが最大高さを超えた場合でも、スクロール バーは表示されます。ただし、シャドーボックスはありません。本当にスクロールしたくない場合は、max-height をさらに増やしてください。

于 2016-07-04T18:31:18.357 に答える
0

上記のすべてのオプションを試しましたが、どれも機能しませんでした。これが、スクロールセルを取り除く方法です。 セルを右クリックし、[出力のスクロールを無効にする] をクリックします。 スクロール セルのサイズが変更されないことはわかっていますが、スクロール セルが非常に小さいため (少なくとも私にとっては)、コードが読みやすくなります。

于 2020-07-08T17:16:19.733 に答える