Creating a link to a pdf page in Adobe Acrobat
Creating a named destination in Acrobat
1. Basic URL Fragment for Page Navigation
You can append #page=X
to the URL of the PDF, where X
is the page number you want to navigate to. This trick can be useful when sharing PDF web links with others.
Example URL:
https://www.example.com/documents/sample.pdf#page=5
This will open the PDF at page 5 when accessed in most web browsers that support PDF viewing through PDF web links.
2. Named Destinations
If you want more control or need to link to a specific section, you can create named destinations in your PDF. Use tools like Adobe Acrobat or another PDF editor to do this.
Steps to Create Named Destinations:
- Open the PDF in Adobe Acrobat.
- Go to View > Show/Hide > Navigation Panes > Destinations.
- Create a new destination by navigating to the desired page or section and clicking New Destination in the Destinations pane.
- Save the PDF.
Link to the Named Destination:
You can then link to a named destination by appending #nameddest=DestinationName
to the PDF URL when creating PDF web links.
Example URL:
https://www.example.com/documents/sample.pdf#nameddest=Introduction
This will open the PDF at the location of the named destination called Introduction
.
3. Combining Page Number and Zoom Level
You can specify the zoom level and page layout using additional parameters in the URL:
#zoom=scale
— Sets the zoom level (e.g., 100 for 100%).#view=Fit
— Fits the content to the window.#page=X&zoom=100
— Opens at a specific page and zoom level, perfect for detailed navigation within PDF web links.
Example URL:
https://www.example.com/documents/sample.pdf#page=5&zoom=150
4. Browser Compatibility
These methods work in most modern browsers that support PDF rendering. Keep in mind the following points:
- Some third-party PDF viewers may not fully support URL fragments for PDF web links.
- For users who download PDFs by default instead of opening them in the browser, this won’t work. They need to open the file manually in a PDF viewer that supports these settings for PDF web links.
5. Testing the URLs
Always test the URLs in different browsers to ensure they work as expected. Some configurations or browser extensions might interfere with the functionality of PDF web links.
Summary
- Use
#page=X
to jump to a specific page. - Use
#nameddest=DestinationName
for specific sections. - Add
#zoom=scale
for custom zoom settings.
Related Links