How do you create a unique header or footer for one part of a document?

What will be an ideal response?

To create a unique header or footer for one part of a document, you must first divide the document into sections. Insert a section break at the point in the document where you want to divide the document and create a unique header. To insert a section break, click Breaks in the Page Setup group on the Page Layout tab, then click Next Page under Section Breaks.?Insert a footer in the first section and enter the desired text for that footer. Click Next in the Navigation group to move to section 2, then click the Link to Previous button to deselect it. You can now enter text for the footer in section 2 that is unique to that section.

Computer Science & Information Technology

You might also like to view...

Which e-mail program comes with Microsoft Office?

A) Outlook Express B) Office Notes C) Outlook D) Eudora

Computer Science & Information Technology

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; for (int row = 0; row < values.length; row++) { System.out.print(m(values[row]) + " "); } } public static int m(int[] list) { int v = list[0]; for (int i = 1; i < list.length; i++) if (v < list[i]) v = list[i]; return v; } } ``` a. 3 33 b. 1 1 c. 5 6 d. 5 33 e. 33 5

Computer Science & Information Technology