There is already an old hint about this topic, but it doesn't really explain it very clearly, only in the comments.
Here's how you can change the margins in TextEdit to your favourite size, so that you can use, for example, the whole space on a sheet of paper when printing.
First, save your document first as a Rich Text file (.rtf), if you have not already done this. To see the effect directly in your document, open it and enable under the Format menu the setting Wrap to Page for your document.
Next open up the TextEdit preferences, switch to the tab Open and Save and check on the option Display RTF files as RTF code instead of formatted text.
Open the document again and you will see the raw code that defines how the document look like. You want to look in the 4th row, where it says:
This defines the left and right margins, thats what the 'l' and 'r' behind marg stand for: left and right.
Now to define customized top and bottom margins you have to add margt and margb, and similarly to before 't'=top, and 'b'=bottom. So add these after the given ones for the side margins, like this:
Now you can set the margins how you like. You have to replace the stars with the correct number in Twips (1 Twip = 1/1440 inch). Here a few examples:
[crarko adds: I haven't tested this one. Please note that updating older hints and clarifying them is always a good thing, so don't be shy about submitting ideas that do just that.]
Here's how you can change the margins in TextEdit to your favourite size, so that you can use, for example, the whole space on a sheet of paper when printing.
First, save your document first as a Rich Text file (.rtf), if you have not already done this. To see the effect directly in your document, open it and enable under the Format menu the setting Wrap to Page for your document.
Next open up the TextEdit preferences, switch to the tab Open and Save and check on the option Display RTF files as RTF code instead of formatted text.
Open the document again and you will see the raw code that defines how the document look like. You want to look in the 4th row, where it says:
margl1440margr1440
This defines the left and right margins, thats what the 'l' and 'r' behind marg stand for: left and right.
Now to define customized top and bottom margins you have to add margt and margb, and similarly to before 't'=top, and 'b'=bottom. So add these after the given ones for the side margins, like this:
margl*margr*margb*margt*
Now you can set the margins how you like. You have to replace the stars with the correct number in Twips (1 Twip = 1/1440 inch). Here a few examples:
- 360 (.25 inch)
- 720 (.5 inch)
- 1080 (.75 inch)
- 1440 (1 inch)
- 567 (1 cm)
[crarko adds: I haven't tested this one. Please note that updating older hints and clarifying them is always a good thing, so don't be shy about submitting ideas that do just that.]
•
[9,097 views]