8

In version 9 we can set the background to an image, however I'd like to save this into a stylesheet that can be installed.

user5601
  • 3,573
  • 2
  • 24
  • 56

1 Answers1

7

sample image you want to use as background:

image = Import["ExampleData/lena.tif"];

Create cell that you need to put in style definition:

Cell[StyleData["Notebook"],
 System`BackgroundAppearance -> image] // CellPrint

enter image description here

Open stylesheet editor (Format -> Edit StyleSheet...)

Copy the cell you just created and install stylesheet.

enter image description here

halmir
  • 15,082
  • 37
  • 53