98

PDF documents have hyperlinks to the contents on the same document (analogous to "#section" hrefs for an HTML document). Where's the back button to go back to the page I was on (where I clicked the hyperlink)?

Let's say I'm on the index of a PDF tutorial, page 4, and I click on Chapter 2's hyperlink in the index that takes me to page 38. Now, if I want to go back to page 4 again, which button or shortcut should I use?

Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400
Srikanth
  • 5,219

12 Answers12

126

I have always had luck using the combination Alt and the left arrow, much the same as in IE, Firefox, or any other browser. I found this out on accident when I was in a PDF document in a browser and found it worked in the standalone program as well.

On the Mac, the equivalent in Adobe Reader is command-left arrow. In Preview (the default PDF reader on Macs), the equivalent is command-[ (open square bracket).

35

"Back" and "Forward" buttons can also be added to the toolbar in Adobe Reader. If you right-click on the tool bar, under "more tools," "page navigation toolbar," they are referred to as "previous view" and "next view."

Or alternatively: Click on the VIEW drop down menu , then Click PAGE NAVIGATION then click PREVIOUS VIEW. A backward arrow will then appear in the toolbar at the top. Repeat for NEXT VIEW to add a forward arrow.

niells
  • 351
5

For Foxit users,

As stated in the other answers you can use [alt + left arrow] as a shortcut.

If you want see this on the menu

  • Open Foxit
  • Go View tab
  • You can see on top left corner of the windows, previous view-next view
Omer
  • 393
4

In Evince you can use the Back Button functionality to achieve what you desire.

The Back Button is not visible by default, but you can make it visible by the following steps.

  • Right-Click on ToolBar
  • Selct Toolbar, from the Context Menu.
  • In the Window that appears, Drag and Drop the Back Buttton to your Toolbar.

Note:
The Back functionality is not similar to what you get in a browser. When you press Back, it gives a list of all the links you had visited in that Document and you can select from the list.

Hashken
  • 533
3

Move back to previously opened topic

Windows: Alt+Left Arrow

Mac : Command+Left Arrow

Move forward to next topic

Windows: Alt+Right Arrow

Mac : Command+Right Arrow

These are all the Keyboard shortcuts that Adobe Acrobat supports.

zx485
  • 2,337
2

For okular, the shortcut is Alt+ Shift+Left.
This can be configured as per user liking through

Settings >> Configure Shortcuts

zx485
  • 2,337
Phcem
  • 21
2

See the other answers for keyboard shortcuts that work on desktops and laptops but these are not generally available on tablets. On iPad, none of the big-name PDF readers have a back button, including Apple, Adobe ond Foxit. Adobe's "Previous View" feature on Alt+Left is not available on its mobile versions.

PDF Reader Pro, including the free Lite Edition, has Android and iOS versions that do have a back button. It appears as a left arrow on the lower right corner of the screen immediately after a link has been followed. Touching the arrow returns to your previous view. Unfortunately it only works for one level so following two links consecutively gives you no quick way to go back to the original page.

2

Its already mentioned in adobe acrobat go to view->page navigation->previous view (hot keys alt+left arrow) go to view->page navigation->next view (hot keys alt+fwd arrow)

1

Another option is to set the links to a new window, then you just have to close the file to display the previous.

To do this:

  1. Open the link Properties sheet.
  2. Click the Actions tab.
  3. Click the Edit button.
  4. Change the Target Document, Open In property to New Window.
  5. Click OK twice.
Denae
  • 11
  • 1
0

For Foxit reader:

  • Mac: Option+Left
  • Windows: Alt+Left
zx485
  • 2,337
0

For the AutoHotkey users on Windows, here is my script for Adobe Acrobat and PDFgear. The script will bind Alt+Left to your mouse back and Alt+Right to the mouse forward button.

#HotIf WinActive("ahk_exe Acrobat.exe") or WinActive("ahk_exe pdfeditor.exe")
    XButton1::Send "!{Left}" ; Jump backward to previous link (Alt+Left)
    XButton2::Send "!{Right}" ; Jump forward again after jumping backward (Alt+Right)
#HotIf

To extend the script to your custom PDF reader, you can extend the OR-chain easily or replace my entries. Use the tool AutoHotkey Windows Spy to get the tool target name (third entry).

If your tool uses a different shortcut, or you want to bind them to different buttons or keys, take a look in the AutoHotkey Reference for Hotkeys and KeyList.

rzickler
  • 216
-1

Well, currently, for previous visited page it is Alt + p. For the next page, it is Alt + n.

Source: https://askubuntu.com/questions/1202218/how-to-go-back-to-last-page-viewed-in-document-viewer

eddys
  • 99
  • 1