The Computer Oracle

Word 2013 showing two pages side by side

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game Looping

--

Chapters
00:00 Word 2013 Showing Two Pages Side By Side
00:16 Accepted Answer Score 26
00:25 Answer 2 Score 2
01:18 Answer 3 Score 0
01:28 Thank you

--

Full question
https://superuser.com/questions/731035/w...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#microsoftword #microsoftword2013

#avk47



ACCEPTED ANSWER

Score 26


To view a single page at a time, select the View tab on the ribbon and click One Page.

enter image description here




ANSWER 2

Score 2


The issue is with the zoom size. I solved this by setting the default zoom to 120%, and then only a single page is displayed by default.

To set it to 120% by default, you'd need to add a macro:

  1. When viewing any Word document, press Alt+F11 to activate the Visual Basic Editor
  2. Click on Normal on the left hand side
  3. Select Insert -> Module
  4. Copy the following code into the module:

    Sub AutoNew()
        With ActiveWindow.View
           .Type = wdPrintView
           .Zoom = 120
        End With
    End Sub
    
    Sub AutoOpen()
        With ActiveWindow.View
            .Type = wdPrintView
            .Zoom = 120
       End With
    End Sub
    

This will set the zoom percentage to 120% for every new document and for every document that you open. You can change 120 to another percentage if you prefer.




ANSWER 3

Score 0


If you are in print view change to layout view then back to print view. This should reset back to a view of one page only.