AllLangHelp_shared.mk                                      |    6 
 source/auxiliary/shared.tree                               |    5 
 source/text/sbasic/shared/01030400.xhp                     |   53 +
 source/text/sbasic/shared/03090413.xhp                     |   31 -
 source/text/sbasic/shared/enum.xhp                         |   13 
 source/text/shared/00/00000401.xhp                         |   20 
 source/text/shared/01/ref_pdf_export.xhp                   |  360 -------------
 source/text/shared/01/ref_pdf_export_digital_signature.xhp |   86 +++
 source/text/shared/01/ref_pdf_export_general.xhp           |  159 +++++
 source/text/shared/01/ref_pdf_export_initial_view.xhp      |   96 +++
 source/text/shared/01/ref_pdf_export_links.xhp             |   60 ++
 source/text/shared/01/ref_pdf_export_security.xhp          |   85 +++
 source/text/shared/01/ref_pdf_export_user_interface.xhp    |   81 ++
 13 files changed, 659 insertions(+), 396 deletions(-)

New commits:
commit efc72a00693af420979735313b57eced9ac0fbaa
Author:     LibreOfficiant <libreoffici...@sfr.fr>
AuthorDate: Wed Nov 13 11:16:11 2019 +0200
Commit:     Olivier Hallot <olivier.hal...@libreoffice.org>
CommitDate: Fri Nov 22 15:31:29 2019 +0100

    LibO Type statement extends enumerations to all data types.
    
    Change-Id: I8574a5c9290071c96618b1cb1aadc26068abd2b1
    Reviewed-on: https://gerrit.libreoffice.org/82571
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hal...@libreoffice.org>
    (cherry picked from commit 2647b00f50bee666a7e23bb5f8471269d03b41c9)
    Reviewed-on: https://gerrit.libreoffice.org/83494

diff --git a/source/text/sbasic/shared/03090413.xhp 
b/source/text/sbasic/shared/03090413.xhp
index 05bb3f292..2956f7e8f 100644
--- a/source/text/sbasic/shared/03090413.xhp
+++ b/source/text/sbasic/shared/03090413.xhp
@@ -31,30 +31,31 @@
              <bookmark_value>Type statement</bookmark_value>
          </bookmark>
          <paragraph role="heading" id="hd_id3153311" xml-lang="en-US" 
level="1"><link href="text/sbasic/shared/03090413.xhp" name="Type 
Statement">Type Statement</link></paragraph>
-         <paragraph role="paragraph" id="par_id3159158" 
xml-lang="en-US">Define non-UNO data structures (structs).</paragraph>
+         <paragraph role="paragraph" id="par_id3159158" 
xml-lang="en-US">Define non-UNO data structures.</paragraph>
      </section>
-     <paragraph role="paragraph" id="par_id311512206747401" xml-lang="en-US">A 
struct is an ordered collection of data fields, that can be manipulated as a 
single item.</paragraph>
+     <paragraph role="paragraph" id="par_id311512206747401" xml-lang="en-US">A 
Type structure is an ordered collection of data fields, that can be manipulated 
as a single item.</paragraph>
      <embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
      <bascode>
-         <paragraph role="bascode" id="par_id3145609" xml-lang="en-US" 
localize="false">Type StructName</paragraph>
-         <paragraph role="bascode" id="par_id951512205849777" xml-lang="en-US" 
localize="false"> DataField1 As TypeName1</paragraph>
-         <paragraph role="bascode" id="par_id951512205849778" xml-lang="en-US" 
localize="false"> DataField2 As TypeName2</paragraph>
-         <paragraph role="bascode" id="par_id951512205849779" xml-lang="en-US" 
localize="false"> (...)</paragraph>
-         <paragraph role="bascode" id="par_id841512205903256" xml-lang="en-US" 
localize="false">End Type</paragraph>
+         <paragraph role="bascode" id="par_id3145609" xml-lang="en-US" 
localize="false">Type struct_name</paragraph>
+         <paragraph role="bascode" id="par_id951512205849777" xml-lang="en-US" 
localize="false">    DataField1 As TypeName1</paragraph>
+         <paragraph role="bascode" id="par_id951512205849778" xml-lang="en-US" 
localize="false">    DataField2 As TypeName2</paragraph>
+         <paragraph role="bascode" id="par_id951512205849779" xml-lang="en-US" 
localize="false">    (...)</paragraph>
+         <paragraph role="bascode" id="par_id841512205903256" xml-lang="en-US" 
localize="false">End Type &apos; struct_name</paragraph>
      </bascode>
+     <note id="par_id351573639548645">A Type structure scope is that of the 
module it belongs to.</note>
      <embed href="text/sbasic/shared/00000003.xhp#functexample"/>
      <bascode>
-         <paragraph role="bascode" id="par_id761512211077225" xml-lang="en-US" 
localize="false">REM  *****  BASIC  *****</paragraph>
-         <paragraph role="bascode" id="par_id981512211072701" xml-lang="en-US" 
localize="false">Type customer</paragraph>
-         <paragraph role="bascode" id="par_id171512211067797" xml-lang="en-US" 
localize="false"> Name1 As String</paragraph>
-         <paragraph role="bascode" id="par_id541512211063461" xml-lang="en-US" 
localize="false"> City As String</paragraph>
-         <paragraph role="bascode" id="par_id481512211058930" xml-lang="en-US" 
localize="false">End Type</paragraph>
+         <paragraph role="bascode" id="par_id981512211072701" xml-lang="en-US" 
localize="false">Type Customer</paragraph>
+         <paragraph role="bascode" id="par_id171512211067797" xml-lang="en-US" 
localize="false">    Name1 As String</paragraph>
+         <paragraph role="bascode" id="par_id541512211063461" xml-lang="en-US" 
localize="false">    City As String</paragraph>
+         <paragraph role="bascode" id="par_id481512211058930" xml-lang="en-US" 
localize="false">End Type &apos; Customer structure</paragraph>
          <paragraph role="bascode" id="par_id841512211054689" xml-lang="en-US" 
localize="false">Sub setCustomer</paragraph>
-         <paragraph role="bascode" id="par_id471512211049777" xml-lang="en-US" 
localize="false"> Dim oCustomer as new customer</paragraph>
-         <paragraph role="bascode" id="par_id881512211042456" xml-lang="en-US" 
localize="false"> oCustomer.Name1 = "The Document Foundation"</paragraph>
-         <paragraph role="bascode" id="par_id461512211038180" xml-lang="en-US" 
localize="false"> oCustomer.City = "Berlin"</paragraph>
+         <paragraph role="bascode" id="par_id471512211049777" xml-lang="en-US" 
localize="false">    Dim oCustomer as New Customer</paragraph>
+         <paragraph role="bascode" id="par_id881512211042456" xml-lang="en-US" 
localize="false">    oCustomer.Name1 = "The Document Foundation"</paragraph>
+         <paragraph role="bascode" id="par_id461512211038180" xml-lang="en-US" 
localize="false">    oCustomer.City = "Berlin"</paragraph>
          <paragraph role="bascode" id="par_id21512211032617" xml-lang="en-US" 
localize="false">End Sub</paragraph>
      </bascode>
+     <tip id="par_id701573639564765"><link href="text/sbasic/shared/enum.xhp" 
name ="enumerations">Enumerations</link> can be created using Type statement 
definitions. <link href="text/sbasic/guide/basic_2_python.xhp" name ="Calling 
Python Scripts from Basic">Calling Python Scripts from Basic</link> illustrates 
that mechanism.</tip>
      <section id="relatedtopics">
          <paragraph role="paragraph" id="par_id211512215755793" 
xml-lang="en-US"><link href="text/sbasic/shared/03132400.xhp" 
name="CreateObject function">CreateObject function</link></paragraph>
      </section>
diff --git a/source/text/sbasic/shared/enum.xhp 
b/source/text/sbasic/shared/enum.xhp
index e56b335d1..8ba2d7901 100644
--- a/source/text/sbasic/shared/enum.xhp
+++ b/source/text/sbasic/shared/enum.xhp
@@ -14,26 +14,25 @@
             <filename>/text/sbasic/shared/enum.xhp</filename>
         </topic>
     </meta>
-
     <body>
     <bookmark branch="index" xml-lang="en-US" id="N0001">
         <bookmark_value>Enum statement</bookmark_value>
         <bookmark_value>constant groups</bookmark_value>
         <bookmark_value>enumerations</bookmark_value>
     </bookmark>
-
     <section id="enumheading">
         <h1 id="hd_id221543446540070"><link href="text/sbasic/shared/enum.xhp" 
name="command_name">Enum Statement [VBA]</link></h1>
         <paragraph role="paragraph" id="N0003">Define enumerations or non UNO 
constant groups. An enumeration is a value list that facilitates programming 
and eases code logic review.</paragraph>
     </section>
     <embed href="text/sbasic/shared/00000003.xhp#vbasupport"/>
     <embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
-    <paragraph role="code" id="par_id931543441922328" 
localize="false">Enum<br/></paragraph>
-    <paragraph role="code" id="par_id771543441931669" localize="false">    
Object Statement block<br/></paragraph>
-    <paragraph role="code" id="par_id21543441938004"  localize="false">End 
Enum</paragraph>
+    <bascode>
+       <paragraph role="bascode" id="par_id931543441922328" 
localize="false">Enum list_name<br/></paragraph>
+       <paragraph role="bascode" id="par_id771543441931669" localize="false">  
  &apos; Object Statement block</paragraph>
+       <paragraph role="bascode" id="par_id21543441938004"  
localize="false">End Enum &apos; list_name</paragraph>
+    </bascode>
     <h2 id="N0006">Parameters:</h2>
     <paragraph role="paragraph" id="N0007">Within a given enumeration, fit 
together values that logically relate to one another.</paragraph>
-
     <embed href="text/sbasic/shared/00000003.xhp#functexample"/>
     <bascode>
        <paragraph role="bascode" id="N0008" localize="false">Option VBASupport 
1<br/></paragraph>
@@ -58,7 +57,7 @@
        <paragraph role="bascode" id="N0040" localize="false">    Print 
.MACINTOSH, .MOTIF, .OPENLOOK, .OS2PM, .W1ND0WS</paragraph>
        <paragraph role="bascode" id="N0041" localize="false">End 
With</paragraph>
     </bascode>
-
+    <tip id="par_id731573636687662">Enumerations can be extended to other data 
types using <link href="text/sbasic/shared/03090413.xhp" name ="Type 
statement">Type statement</link> definitions. <link 
href="text/sbasic/guide/basic_2_python.xhp" name ="Calling Python Scripts from 
Basic">Calling Python Scripts from Basic</link> illustrates that 
mechanism.</tip>
     <section id="relatedtopics" >
         <paragraph role="paragraph" id="N0051"><link 
href="text/sbasic/shared/03100700.xhp" name="const">Const</link> statement, 
<link href="text/sbasic/shared/01020100.xhp" name 
="external">constants</link></paragraph>
         <paragraph role="paragraph" id="N0053"><link 
href="text/sbasic/shared/03103350.xhp" name="Option VBASupport">Option 
VBASupport</link> statement</paragraph>
commit eee359bf03c95f84536f4bba3e340e366fe236f9
Author:     Olivier Hallot <olivier.hal...@libreoffice.org>
AuthorDate: Mon Nov 18 10:25:40 2019 -0300
Commit:     Olivier Hallot <olivier.hal...@libreoffice.org>
CommitDate: Fri Nov 22 15:31:04 2019 +0100

    tdf#128808 Clarify Basic libraries containers
    
    Change-Id: Iaa85a3b0340eb88c8b81ee8070039c1e518789f6
    Reviewed-on: https://gerrit.libreoffice.org/83092
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hal...@libreoffice.org>
    (cherry picked from commit 75af753c3f78948c40ce34c5f6d61584b7e931a9)
    Reviewed-on: https://gerrit.libreoffice.org/83495

diff --git a/source/text/sbasic/shared/01030400.xhp 
b/source/text/sbasic/shared/01030400.xhp
index de3a08d8e..73f4ccdaa 100644
--- a/source/text/sbasic/shared/01030400.xhp
+++ b/source/text/sbasic/shared/01030400.xhp
@@ -1,7 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
-
-
 <!--
  * This file is part of the LibreOffice project.
  *
@@ -19,9 +16,7 @@
  *   except in compliance with the License. You may obtain a copy of
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  -->
-
-
-               <helpdocument version="1.0">
+<helpdocument version="1.0">
 <meta>
 <topic id="textsbasicshared01030400xml" indexer="include" status="PUBLISH">
 <title id="tit" xml-lang="en-US">Organizing Libraries and Modules</title>
@@ -30,7 +25,9 @@
 </meta>
 <body>
 <section id="anlegenverwalten">
-<bookmark xml-lang="en-US" branch="index" 
id="bm_id3148797"><bookmark_value>libraries;organizing</bookmark_value>
+<bookmark xml-lang="en-US" branch="index" id="bm_id3148797">
+<bookmark_value>libraries;organizing</bookmark_value>
+<bookmark_value>libraries;containers</bookmark_value>
 <bookmark_value>modules;organizing</bookmark_value>
 <bookmark_value>copying;modules</bookmark_value>
 <bookmark_value>adding libraries</bookmark_value>
@@ -39,11 +36,25 @@
 <bookmark_value>moving;modules</bookmark_value>
 <bookmark_value>organizing;modules/libraries/dialogs</bookmark_value>
 <bookmark_value>renaming modules and dialogs</bookmark_value>
-</bookmark><paragraph role="heading" id="hd_id3148797" xml-lang="en-US" 
level="1"><variable id="01030400"><link 
href="text/sbasic/shared/01030400.xhp">Organizing Libraries and Modules</link>
-</variable></paragraph>
+</bookmark><h1 id="hd_id3148797"><variable id="01030400"><link 
href="text/sbasic/shared/01030400.xhp">Organizing Libraries and Modules</link>
+</variable></h1>
 </section>
-<paragraph role="heading" id="hd_id3150868" xml-lang="en-US" 
level="2">Organizing Libraries</paragraph>
-<paragraph role="heading" id="hd_id3125864" xml-lang="en-US" 
level="3">Creating a New Library</paragraph>
+<h2 id="hd_id371574080559061">Basic Libraries Containers</h2>
+<paragraph role="paragraph" id="par_id961574080563824">%PRODUCTNAME Basic 
libraries can be stored in 3 different containers:</paragraph>
+<list type="unordered">
+    <listitem>
+        <paragraph id="par_id571574079618609"  
role="listitem"><emph>%PRODUCTNAME Macros</emph>: libraries stored in this 
container are available for all users of the computer and are managed by the 
computer administrator. The container is located in the %PRODUCTNAME 
installation directory.</paragraph>
+    </listitem>
+    <listitem>
+        <paragraph id="par_id151574079741214"  role="listitem"><emph>My 
Macros</emph>: libraries stored in this container are available to all 
documents of your user. The container is located in the user profile area and 
is not accessible by another user.</paragraph>
+    </listitem>
+    <listitem>
+        <paragraph id="par_id581574080384335"  
role="listitem"><emph>Document</emph>: libraries stored in the document 
container are only available for the document and are accessible only when the 
document is open. You cannot access macros of a document from another 
document.</paragraph>
+    </listitem>
+</list>
+<paragraph role="paragraph" id="par_id881574081445896">To access macros stored 
in libraries of <emph>%PRODUCTNAME Macros</emph> or <emph>My Macros</emph> from 
another container, including the document container, use the <link 
href="text/sbasic/shared/03131900.xhp" name="GlobalScope">GlobalScope 
specifier</link>.</paragraph>
+<h2 id="hd_id3150868">Organizing Libraries</h2>
+<h3 id="hd_id3125864">Creating a New Library</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3152576" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -58,7 +69,7 @@
 <paragraph role="listitem" id="par_id3153365" xml-lang="en-US">Click 
<emph>New</emph> and insert a name to create a new library.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3147394" xml-lang="en-US" level="3">Import 
a Library</paragraph>
+<h3 id="hd_id3147394">Import a Library</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3153157" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -85,7 +96,7 @@
 <paragraph role="listitem" id="par_id3147004" xml-lang="en-US">Click 
<emph>OK</emph> to import the library.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3159099" xml-lang="en-US" level="3">Export 
a Library</paragraph>
+<h3 id="hd_id3159099">Export a Library</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3147005" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -112,7 +123,7 @@
 <paragraph role="listitem" id="par_id3147012" xml-lang="en-US">Click 
<emph>Save</emph> to export the library.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3159100" xml-lang="en-US" 
level="3">Deleting a Library</paragraph>
+<h3 id="hd_id3159100">Deleting a Library</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3150086" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -138,8 +149,8 @@
 <paragraph role="listitem" id="par_id3146869" xml-lang="en-US">If you delete a 
library that was inserted as reference only the reference is deleted but not 
the library itself.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3147070" xml-lang="en-US" 
level="2">Organizing Modules and Dialogs</paragraph>
-<paragraph role="heading" id="hd_id3155265" xml-lang="en-US" 
level="3">Creating a New Module or Dialog</paragraph>
+<h2 id="hd_id3147070">Organizing Modules and Dialogs</h2>
+<h3 id="hd_id3155265">Creating a New Module or Dialog</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3154537" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -154,7 +165,7 @@
 <paragraph role="listitem" id="par_id3152389" xml-lang="en-US">Enter a name 
for the module or the dialog and click <emph>OK</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3152872" xml-lang="en-US" 
level="3">Renaming a Module or Dialog</paragraph>
+<h3 id="hd_id3152872">Renaming a Module or Dialog</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3159230" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -167,7 +178,7 @@
 <paragraph role="listitem" id="par_id3155526" xml-lang="en-US">Press Enter to 
confirm your changes.</paragraph>
 </listitem>
 </list>
-<paragraph role="heading" id="hd_id3146963" xml-lang="en-US" 
level="3">Deleting a Module or Dialog</paragraph>
+<h3 id="hd_id3146963">Deleting a Module or Dialog</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3147547" xml-lang="en-US">Choose 
<emph>Tools - Macros - Organize Macros - %PRODUCTNAME Basic</emph> and click 
<emph>Organizer</emph> or click the <emph>Select Module</emph> icon in the 
Basic IDE to open the <emph>Macro Organizer</emph> dialog.</paragraph>
@@ -182,9 +193,9 @@
 <paragraph role="listitem" id="par_id3147248" xml-lang="en-US">Click 
<emph>Delete</emph>.</paragraph>
 </listitem>
 </list>
-<paragraph role="warning" id="par_id3151339" xml-lang="en-US">Deleting a 
module permanently deletes all existing procedures and functions in that 
module.</paragraph>
-<paragraph role="heading" id="hd_id3151392" xml-lang="en-US" 
level="2">Organizing Projects among Documents or Templates</paragraph>
-<paragraph role="heading" id="hd_id3156400" xml-lang="en-US" level="3">Moving 
or copying modules between documents, templates and the application.</paragraph>
+<warning id="par_id3151339">Deleting a module permanently deletes all existing 
procedures and functions in that module.</warning>
+<h2 id="hd_id3151392">Organizing Projects among Documents or Templates</h2>
+<h3 id="hd_id3156400">Moving or copying modules between documents, templates 
and the application.</h3>
 <list type="ordered">
 <listitem>
 <paragraph role="listitem" id="par_id3146819" xml-lang="en-US">Open all 
documents or templates among which you want to move or copy the modules or 
dialogs.</paragraph>
commit 4c260d76445edb7b71d22ab3daecbbcc4ff31679
Author:     Olivier Hallot <olivier.hal...@libreoffice.org>
AuthorDate: Mon Nov 18 18:32:03 2019 -0300
Commit:     Olivier Hallot <olivier.hal...@libreoffice.org>
CommitDate: Fri Nov 22 15:30:46 2019 +0100

    Update and refactor PDF export Help pages
    
    Added Help for several new options
    Adjust options visibility for each module
    Split page into smaller pages
    Adjust Contents tree
    
    Change-Id: I03fd0a4cb99f36da0ea7911a1afb5d4be6648244
    Reviewed-on: https://gerrit.libreoffice.org/83131
    Tested-by: Jenkins
    Reviewed-by: Olivier Hallot <olivier.hal...@libreoffice.org>
    (cherry picked from commit 421131867de4fd2b80d066c2fecb8a1c39e6c227)
    Reviewed-on: https://gerrit.libreoffice.org/83496

diff --git a/AllLangHelp_shared.mk b/AllLangHelp_shared.mk
index 78f493604..ade4b8d8c 100644
--- a/AllLangHelp_shared.mk
+++ b/AllLangHelp_shared.mk
@@ -354,6 +354,12 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
     helpcontent2/source/text/shared/01/profile_safe_mode \
     helpcontent2/source/text/shared/01/ref_epub_export \
     helpcontent2/source/text/shared/01/ref_pdf_export \
+    helpcontent2/source/text/shared/01/ref_pdf_export_digital_signature \
+    helpcontent2/source/text/shared/01/ref_pdf_export_general \
+    helpcontent2/source/text/shared/01/ref_pdf_export_initial_view \
+    helpcontent2/source/text/shared/01/ref_pdf_export_links \
+    helpcontent2/source/text/shared/01/ref_pdf_export_security \
+    helpcontent2/source/text/shared/01/ref_pdf_export_user_interface \
     helpcontent2/source/text/shared/01/ref_pdf_send_as \
     helpcontent2/source/text/shared/01/signexistingpdf \
     helpcontent2/source/text/shared/01/securitywarning \
diff --git a/source/auxiliary/shared.tree b/source/auxiliary/shared.tree
index 98e572101..a8a864a61 100644
--- a/source/auxiliary/shared.tree
+++ b/source/auxiliary/shared.tree
@@ -107,7 +107,7 @@
                 <node id="10071" title="Digital Signatures">
                     <topic 
id="shared/text/shared/guide/digital_signatures.xhp">About Digital 
Signatures</topic>
                     <topic 
id="shared/text/shared/guide/digitalsign_send.xhp">Applying Digital 
Signatures</topic>
-                    <topic 
id="shared/text/shared/01/digitalsignaturespdf.xhp">Digital Signatures in PDF 
Exports</topic>
+                    <topic 
id="shared/text/shared/01/ref_pdf_export_digital_signature.xhp">Digital 
Signatures in PDF Exports</topic>
                     <topic 
id="shared/text/shared/01/signexistingpdf.xhp">Signing Existing PDFs</topic>
                     <topic 
id="swriter/text/swriter/01/addsignatureline.xhp">Adding Signature Lines in 
Text Documents</topic>
                     <topic 
id="swriter/text/swriter/01/signsignatureline.xhp">Signing Signature Lines in 
Text Documents</topic>
@@ -137,12 +137,13 @@
 <topic id="shared/text/shared/guide/chart_insert.xhp">Inserting Charts</topic>
 <topic id="schart/text/schart/main0000.xhp">Charts in %PRODUCTNAME</topic>
                </node>
-               <node id="1013" title="Load, Save, Import, Export">
+               <node id="1013" title="Load, Save, Import, Export, PDF">
 <topic id="shared/text/shared/guide/doc_open.xhp">Opening Documents</topic>
 <topic id="shared/text/shared/guide/import_ms.xhp">Opening documents saved in 
other formats</topic>
 <topic id="shared/text/shared/guide/doc_save.xhp">Saving Documents</topic>
 <topic id="shared/text/shared/guide/doc_autosave.xhp">Saving Documents 
Automatically</topic>
 <topic id="shared/text/shared/guide/export_ms.xhp">Saving Documents in Other 
Formats</topic>
+<topic id="shared/text/shared/01/ref_pdf_export.xhp">Exporting Documents to 
PDF</topic>
 <topic id="shared/text/shared/guide/data_dbase2office.xhp">Importing and 
Exporting Data in Text Format</topic>
 <topic id="shared/text/shared/guide/openpgp.xhp">Encrypting Documents with 
OpenPGP</topic>
                </node>
diff --git a/source/text/shared/00/00000401.xhp 
b/source/text/shared/00/00000401.xhp
index b018c9de3..47a059366 100644
--- a/source/text/shared/00/00000401.xhp
+++ b/source/text/shared/00/00000401.xhp
@@ -252,12 +252,27 @@
    </table>
 </section>
 
-
 <section id="exportsignedpdf">
-    <paragraph role="paragraph" id="par_id3163421" xml-lang="en-US">Choose 
<emph>File - Export As - Export as PDF</emph>, <emph>Digital Signatures</emph> 
tab.</paragraph>
+    <paragraph role="paragraph" id="par_id3163421" xml-lang="en-US">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>Digital 
Signatures</emph> tab.</paragraph>
+</section>
+<section id="exportpdfsecurity">
+    <paragraph role="paragraph" id="par_id671574090639995">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>Security</emph> 
tab.</paragraph>
+</section>
+<section id="exportpdfgeneral">
+    <paragraph role="paragraph" id="par_id211574090645188">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>General</emph> 
tab.</paragraph>
+</section>
+<section id="exportpdfinitialview">
+    <paragraph role="paragraph" id="par_id601574090650587">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>Initial 
View</emph> tab.</paragraph>
+</section>
+<section id="exportpdflinks">
+    <paragraph role="paragraph" id="par_id51574090655835">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>Links</emph> 
tab.</paragraph>
+</section>
+<section id="exportpdfuserinterface">
+    <paragraph role="paragraph" id="par_id541574090661437">Choose 
<menuitem>File - Export As - Export as PDF</menuitem>, <emph>User 
Interface</emph> tab.</paragraph>
 </section>
 <section id="exportpdf">
 <paragraph role="paragraph" id="par_id3166421" xml-lang="en-US">Choose 
<emph>File - Export As - Export as PDF</emph>.</paragraph>
+</section>
 <section id="syexportpdf">
 <table id="tbl_id3154992">
 <tablerow>
@@ -271,7 +286,6 @@
 </tablerow>
 </table>
 </section>
-</section>
 <section id="pdf">
 <paragraph role="paragraph" id="par_id3145410" xml-lang="en-US">Choose 
<emph>File - Send - E-mail as PDF</emph>.</paragraph>
 </section>
diff --git a/source/text/shared/01/ref_pdf_export.xhp 
b/source/text/shared/01/ref_pdf_export.xhp
index 22e7f7825..08cca8e19 100644
--- a/source/text/shared/01/ref_pdf_export.xhp
+++ b/source/text/shared/01/ref_pdf_export.xhp
@@ -30,15 +30,14 @@
 
 <section id="pdf_export">
 <bookmark xml-lang="en-US" branch="index" id="bm_id3149532">
-  <bookmark_value>PDF;export</bookmark_value>
-  <bookmark_value>portable document format</bookmark_value>
-  <bookmark_value>exporting;to PDF</bookmark_value>
+<bookmark_value>PDF;export</bookmark_value>
+<bookmark_value>portable document format</bookmark_value>
+<bookmark_value>exporting;to PDF</bookmark_value>
 </bookmark>
 <comment>MW made "PDF export a two level entry"</comment><comment>UFI: write 
guide and move bookmarks there</comment>
 <bookmark xml-lang="en-US" branch="hid/.uno:ExportToPDF" id="bm_id2491692" 
localize="false"/>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/PdfGeneralPage" id="bm_id1033968" 
localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/@@nowidget@@" 
id="bm_id1033968" localize="false"/>
-<paragraph id="hd_id3149532" role="heading" level="1" 
xml-lang="en-US"><variable id="ref_pdf_export"><link 
href="text/shared/01/ref_pdf_export.xhp" name="Export as PDF">Export as 
PDF</link></variable></paragraph>
+
+<h1 id="hd_id3149532"><variable id="ref_pdf_export"><link 
href="text/shared/01/ref_pdf_export.xhp" name="Export as PDF">Export as 
PDF</link></variable></h1>
 <paragraph id="par_id3154044" role="paragraph" xml-lang="en-US"><variable 
id="export"><ahelp hid=".">Saves the current file to Portable Document Format 
(PDF) version 1.4.</ahelp> A PDF file can be viewed and printed on any platform 
with the original formatting intact, provided that supporting software is 
installed.</variable></paragraph>
 </section>
 
@@ -46,350 +45,15 @@
 <embed href="text/shared/00/00000401.xhp#exportpdf"/>
 </section>
 
-<paragraph id="hd_id746482" role="heading" level="1" xml-lang="en-US">General 
tab</paragraph>
-
-<paragraph id="hd_id3148520" role="heading" level="2" 
xml-lang="en-US">Range</paragraph>
-<paragraph id="par_id3154230" role="paragraph" xml-lang="en-US">Sets the 
export options for the pages included in the PDF file.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/all" 
id="bm_id1033967" localize="false"/>
-
-<paragraph id="hd_id3166445" role="heading" level="3" 
xml-lang="en-US">All</paragraph>
-<paragraph id="par_id3149893" role="paragraph" xml-lang="en-US"><ahelp 
hid="filter/ui/pdfgeneralpage/all">Exports all defined print ranges. If no 
print range is defined, exports the entire document.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/range" 
id="bm_id2618793" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/pages" 
id="bm_id2676778" localize="false"/>
-
-<paragraph id="hd_id3154673" role="heading" level="3" 
xml-lang="en-US">Pages</paragraph>
-<paragraph id="par_id3147571" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Exports the pages you type in the box.</ahelp></paragraph>
-<paragraph id="par_id3145136" role="paragraph" xml-lang="en-US">To export a 
range of pages, use the format 3-6. To export single pages, use the format 
7;9;11. If you want, you can export a combination of page ranges and single 
pages, by using a format like 3-6;8;10;12.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/selection" 
id="bm_id8889126" localize="false"/>
-
-<paragraph id="hd_id3147043" role="heading" level="3" 
xml-lang="en-US">Selection</paragraph>
-<paragraph id="par_id3150774" role="paragraph" xml-lang="en-US"><ahelp 
hid="filter/ui/pdfgeneralpage/selection">Exports the current 
selection.</ahelp></paragraph>
-
-<paragraph id="par_idN10706" role="heading" level="2" 
xml-lang="en-US">Images</paragraph>
-<paragraph id="par_idN1070A" role="paragraph" xml-lang="en-US">Sets the PDF 
export options for images inside your document.</paragraph>
-<paragraph id="par_idN1071B" role="note" xml-lang="en-US">EPS images with 
embedded previews are exported only as previews. EPS images without embedded 
previews are exported as empty placeholders.</paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/losslesscompress" id="bm_id8095950" 
localize="false"/>
-
-<paragraph id="par_idN10715" role="heading" level="3" 
xml-lang="en-US">Lossless compression</paragraph>
-<paragraph id="par_idN10719" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Selects a lossless compression of images. All pixels are 
preserved.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/jpegcompress" 
id="bm_id137028" localize="false"/>
-
-<paragraph id="par_idN10730" role="heading" level="3" xml-lang="en-US">JPEG 
compression</paragraph>
-<paragraph id="par_idN10734" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Selects a JPEG compression of images. With a high quality level, almost 
all pixels are preserved. With a low quality level, some pixels get lost and 
artefacts are introduced, but file sizes are reduced.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/quality" 
id="bm_id5849787" localize="false"/>
-
-<paragraph id="par_idN1074C" role="heading" level="3" 
xml-lang="en-US">Quality</paragraph>
-<paragraph id="par_idN10750" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enter the quality level for JPEG compression.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/reduceresolution" id="bm_id3947264" 
localize="false"/>
-
-<paragraph id="par_idN10767" role="heading" level="3" xml-lang="en-US">Reduce 
image resolution</paragraph>
-<paragraph id="par_idN1076B" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to resample or down-size the images to a lower number of pixels 
per inch.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/resolution" 
id="bm_id1751762" localize="false"/>
-<paragraph id="par_idN10782" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select the target resolution for the images.</ahelp></paragraph>
-
-<paragraph id="par_idN10791" role="heading" level="2" 
xml-lang="en-US">General</paragraph>
-<paragraph id="par_idN10795" role="paragraph" xml-lang="en-US">Sets general 
PDF export options.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/embed" 
id="bm_id0804200803552411" localize="false"/>
-
-<paragraph id="hd_id080420080355360" role="heading" level="3" 
xml-lang="en-US">Hybrid PDF (embed ODF file)</paragraph>
-<paragraph id="par_id0804200803553767" role="paragraph" 
xml-lang="en-US"><ahelp hid=".">This setting enables you to export the document 
as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers 
it behaves like a normal .pdf file and it remains fully editable in 
%PRODUCTNAME.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/pdfa" 
id="bm_id303964" localize="false"/>
-
-<paragraph id="hd_id2796411" role="heading" level="3" xml-lang="en-US">Archive 
PDF/A-1a (ISO 19005-1)</paragraph>
-<paragraph id="par_id5016327" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Converts to the PDF/A-1a format. This is defined as an electronic 
document file format for long term preservation. All fonts that were used in 
the source document will be embedded into the generated PDF file. PDF tags will 
be written.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/tagged" 
id="bm_id6884975" localize="false"/>
-
-<paragraph id="par_idN107A0" role="heading" level="3" xml-lang="en-US">Tagged 
PDF (add document structure)</paragraph>
-<paragraph id="par_idN107A4" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to write PDF tags. This can increase file size by huge 
amounts.</ahelp></paragraph>
-<paragraph id="par_idN107B3" role="paragraph" xml-lang="en-US">Tagged PDF 
contains information about the structure of the document contents. This can 
help to display the document on devices with different screens, and when using 
screen reader software.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/bookmarks" 
id="bm_id8694112" localize="false"/>
-
-<paragraph id="hd_id8257087" role="heading" level="3" xml-lang="en-US">Export 
bookmarks</paragraph>
-<paragraph id="par_id3479415" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to export bookmarks of Writer documents as PDF bookmarks. 
Bookmarks are created for all outline paragraphs (<item type="menuitem">Tools - 
Chapter Numbering</item>) and for all table of contents entries for which you 
did assign hyperlinks in the source document.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/comments" 
id="bm_id7971129" localize="false"/>
-
-<paragraph id="par_idN107BE" role="heading" level="3" 
xml-lang="en-US">Comments as PDF annotations</paragraph>
-<paragraph id="par_idN107C2" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to export comments of Writer and Calc documents as PDF 
annotations.</ahelp></paragraph>
-<paragraph id="par_idN207C2" role="paragraph" xml-lang="en-US">To export 
comments of Writer documents as they are shown in %PRODUCTNAME, choose 
<switchinline select="sys"><caseinline select="MAC"><emph>%PRODUCTNAME - 
Preferences</emph>
-</caseinline><defaultinline><emph>Tools - 
Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME Writer - 
Print</emph> and select the <emph>In margins</emph> option in the 
<emph>Comments</emph> area. The exported pages will be scaled down and the 
comments will be placed into their margins.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/forms" 
id="bm_id9651478" localize="false"/>
-
-<paragraph id="par_idN107F4" role="heading" level="3" xml-lang="en-US">Create 
PDF form</paragraph>
-<paragraph id="par_id4909817" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Choose to create a PDF form. This can be filled out and printed by the 
user of the PDF document.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/format" 
id="bm_id3088167" localize="false"/>
-
-<paragraph id="hd_id6585283" role="heading" level="3" xml-lang="en-US">Submit 
format</paragraph>
-<paragraph id="par_idN107F8" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select the format of submitting forms from within the PDF 
file.</ahelp></paragraph>
-<paragraph id="par_id0901200811454970" role="paragraph" 
xml-lang="en-US">Select the format of the data that you will receive from the 
submitter: FDF (Forms Data Format), PDF, HTML, or XML.</paragraph>
-<paragraph id="par_idN10807" role="paragraph" xml-lang="en-US">This setting 
overrides the control's URL property that you set in the document.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/allowdups" 
id="bm_id3992267" localize="false"/>
-
-<paragraph id="hd_id1026200909535841" role="heading" level="3" 
xml-lang="en-US">Allow duplicate field names</paragraph>
-<paragraph id="par_id102620090953596" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Allows you to use the same field name for multiple fields in the 
generated PDF file. If disabled, field names will be exported using generated 
unique names.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/emptypages" 
id="bm_id5027619" localize="false"/>
-
-<paragraph id="hd_id3946958" role="heading" level="3" xml-lang="en-US">Export 
automatically inserted blank pages</paragraph>
-<paragraph id="par_id8551896" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">If switched on, automatically inserted blank pages are exported to the 
PDF file. This is best if you are printing the pdf file double-sided. Example: 
In a book a chapter paragraph style is set to always start with an odd numbered 
page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even 
numbered blank page. This option controls whether to export that even numbered 
page or not.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/usereferencexobject" id="bm_id5027620" 
localize="false"/>
-<paragraph id="hd_id3946959" role="heading" level="3" xml-lang="en-US">Use 
reference XObjects</paragraph>
-<paragraph id="par_id8551897" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">This option affects how PDF images are exported back to PDF. When this 
option is disabled, then the first page of the PDF data is included in the 
output. The PDF export merges the used images, fonts and other resources during 
export. This is a complex operation, but the result can be viewed in various 
viewers. When the option is enabled, then the reference XObject markup is used: 
this is a simple operation, but viewers have to support this markup to show 
vector images. Otherwise a fallback bitmap is shown in the 
viewer.</ahelp></paragraph>
-
-<paragraph id="hd_id9796441" role="heading" level="1" xml-lang="en-US">Initial 
View tab</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/PdfViewPage" 
id="bm_id4472793" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/@@nowidget@@" 
id="bm_id4472793" localize="false"/>
-
-<paragraph id="hd_id1218604" role="heading" level="2" 
xml-lang="en-US">Panes</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/pageonly" 
id="bm_id4472792" localize="false"/>
-
-<paragraph id="hd_id7071443" role="heading" level="3" xml-lang="en-US">Page 
only</paragraph>
-<paragraph id="par_id1851557" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows only the page 
contents.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/outline" 
id="bm_id5274819" localize="false"/>
-
-<paragraph id="hd_id7464217" role="heading" level="3" 
xml-lang="en-US">Bookmarks and page</paragraph>
-<paragraph id="par_id4490188" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows a bookmarks palette and the 
page contents.</ahelp><comment>UFI: Adobe reader help names the panes as 
"palettes"</comment></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/thumbs" 
id="bm_id9964598" localize="false"/>
-
-<paragraph id="hd_id3581041" role="heading" level="3" 
xml-lang="en-US">Thumbnails and page</paragraph>
-<paragraph id="par_id956755" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows a thumbnails palette and the 
page contents.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/page" 
id="bm_id5693533" localize="false"/>
-
-<paragraph id="hd_id1905575" role="heading" level="3" xml-lang="en-US">Open on 
page</paragraph>
-<paragraph id="par_id9776909" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to show the given page when the reader opens the PDF 
file.</ahelp></paragraph>
-
-<paragraph id="hd_id7509994" role="heading" level="2" 
xml-lang="en-US">Magnification</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitdefault" 
id="bm_id7652821" localize="false"/>
-
-<paragraph id="hd_id5900143" role="heading" level="3" 
xml-lang="en-US">Default</paragraph>
-<paragraph id="par_id822168" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page contents without 
zooming. If the reader software is configured to use a zoom factor by default, 
the page shows with that zoom factor.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitwin" 
id="bm_id8959929" localize="false"/>
-
-<paragraph id="hd_id1092257" role="heading" level="3" xml-lang="en-US">Fit in 
window</paragraph>
-<paragraph id="par_id3092135" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page zoomed to fit 
entirely into the reader's window.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitwidth" 
id="bm_id5164342" localize="false"/>
-
-<paragraph id="hd_id654622" role="heading" level="3" xml-lang="en-US">Fit 
width</paragraph>
-<paragraph id="par_id814539" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page zoomed to fit the 
width of the reader's window.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitvis" 
id="bm_id4881435" localize="false"/>
-
-<paragraph id="hd_id9883114" role="heading" level="3" xml-lang="en-US">Fit 
visible</paragraph>
-<paragraph id="par_id2362437" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the text and graphics on the 
page zoomed to fit the width of the reader's window.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitzoom" 
id="bm_id3769035" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/zoom" 
id="bm_id2727134" localize="false"/>
-
-<paragraph id="hd_id7296975" role="heading" level="3" xml-lang="en-US">Zoom 
factor</paragraph>
-<paragraph id="par_id371715" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select a given zoom factor when the reader opens the PDF 
file.</ahelp></paragraph>
-
-<paragraph id="hd_id329905" role="heading" level="2" xml-lang="en-US">Page 
layout</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/defaultlayout" 
id="bm_id2023682" localize="false"/>
-
-<paragraph id="hd_id5632496" role="heading" level="3" 
xml-lang="en-US">Default</paragraph>
-<paragraph id="par_id1694082" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the pages according to the 
layout setting of the reader software.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/singlelayout" 
id="bm_id863368" localize="false"/>
-
-<paragraph id="hd_id8454237" role="heading" level="3" xml-lang="en-US">Single 
page</paragraph>
-<paragraph id="par_id672322" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows one page at a 
time.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/contlayout" 
id="bm_id3083590" localize="false"/>
-
-<paragraph id="hd_id7387310" role="heading" level="3" 
xml-lang="en-US">Continuous</paragraph>
-<paragraph id="par_id8764305" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages in a continuous vertical 
column.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/contfacinglayout" 
id="bm_id5062410" localize="false"/>
-
-<paragraph id="hd_id6223639" role="heading" level="3" 
xml-lang="en-US">Continuous facing</paragraph>
-<paragraph id="par_id5318765" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages side by side in a 
continuous column. For more than two pages, the first page is displayed on the 
right.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/firstonleft" 
id="bm_id9036835" localize="false"/>
-
-<paragraph id="hd_id1416364" role="heading" level="3" xml-lang="en-US">First 
page is left</paragraph>
-<paragraph id="par_id9596850" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages side by side in a 
continuous column. For more than two pages, the first page is displayed on the 
left. You must enable support for complex text layout on Language settings - 
Languages in the Options dialog box.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfuserinterfacepage/PdfUserInterfacePage" 
id="bm_id4184393" localize="false"/>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfuserinterfacepage/@@nowidget@@" id="bm_id4184393" 
localize="false"/>
-
-<paragraph id="hd_id18005" role="heading" level="1" xml-lang="en-US">User 
Interface tab</paragraph>
-
-<paragraph id="hd_id6676839" role="heading" level="2" xml-lang="en-US">Window 
options</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/resize" 
id="bm_id4184392" localize="false"/>
-
-<paragraph id="hd_id3809015" role="heading" level="3" xml-lang="en-US">Resize 
window to initial page</paragraph>
-<paragraph id="par_id1321146" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that is shown in a window displaying the 
whole initial page.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/center" 
id="bm_id1589098" localize="false"/>
+<embed href="text/shared/01/ref_pdf_export_general.xhp#pdfexportgeneral"/>
+<embed 
href="text/shared/01/ref_pdf_export_initial_view.xhp#pdfexportinitialview"/>
+<embed 
href="text/shared/01/ref_pdf_export_user_interface.xhp#pdfexportuserinterface"/>
+<embed href="text/shared/01/ref_pdf_export_links.xhp#pdfexportlinks"/>
+<embed href="text/shared/01/ref_pdf_export_security.xhp#pdfexportsecurity"/>
+<embed 
href="text/shared/01/ref_pdf_export_digital_signature.xhp#pdfexportdigitalsignature"/>
 
-<paragraph id="hd_id6994842" role="heading" level="3" xml-lang="en-US">Center 
window on screen</paragraph>
-<paragraph id="par_id9601428" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that is shown in a reader window centered 
on screen.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/open" 
id="bm_id1278420" localize="false"/>
-
-<paragraph id="hd_id6369212" role="heading" level="3" xml-lang="en-US">Open in 
full screen mode</paragraph>
-<paragraph id="par_id1111789" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that is shown in a full screen reader 
window in front of all other windows.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/display" 
id="bm_id8746910" localize="false"/>
-
-<paragraph id="hd_id2041993" role="heading" level="3" xml-lang="en-US">Display 
document title</paragraph>
-<paragraph id="par_id4576555" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that is shown with the document title in 
the reader's title bar.</ahelp></paragraph>
-
-<paragraph id="hd_id4632099" role="heading" level="2" xml-lang="en-US">User 
interface options</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/menubar" 
id="bm_id9636524" localize="false"/>
-
-<paragraph id="hd_id3154087" role="heading" level="3" xml-lang="en-US">Hide 
menu bar</paragraph>
-<paragraph id="par_id6582537" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to hide the reader's menu bar when the document is 
active.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/toolbar" 
id="bm_id5675527" localize="false"/>
-
-<paragraph id="hd_id729697" role="heading" level="3" xml-lang="en-US">Hide 
toolbar</paragraph>
-<paragraph id="par_id769066" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to hide the reader's toolbar when the document is 
active.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/window" 
id="bm_id3486434" localize="false"/>
-
-<paragraph id="hd_id376293" role="heading" level="3" xml-lang="en-US">Hide 
window controls</paragraph>
-<paragraph id="par_id43641" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to hide the reader's controls when the document is 
active.</ahelp></paragraph>
-
-<paragraph id="hd_id1886654" role="heading" level="2" 
xml-lang="en-US">Transitions</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfuserinterfacepage/effects" 
id="bm_id3901791" localize="false"/>
-
-<paragraph id="par_idN107D9" role="heading" level="3" xml-lang="en-US">Use 
transition effects</paragraph>
-<paragraph id="par_idN107DD" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to export Impress slide transition effects to respective PDF 
effects.</ahelp></paragraph>
-
-<paragraph id="hd_id9053926" role="heading" level="2" 
xml-lang="en-US">Bookmarks</paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfuserinterfacepage/allbookmarks" id="bm_id4371776" 
localize="false"/>
-
-<paragraph id="hd_id1941892" role="heading" level="3" xml-lang="en-US">All 
bookmark levels</paragraph>
-<paragraph id="par_id341807" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to show all bookmark levels when the reader opens the PDF 
file.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfuserinterfacepage/visiblebookmark" id="bm_id6384166" 
localize="false"/>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfuserinterfacepage/visiblelevel" id="bm_id1559801" 
localize="false"/>
-
-<paragraph id="hd_id486770" role="heading" level="3" xml-lang="en-US">Visible 
bookmark levels</paragraph>
-<paragraph id="par_id4850001" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to show bookmark levels down to the selected level when the 
reader opens the PDF file.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/PdfLinksPage" 
id="bm_id5594043" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/@@nowidget@@" 
id="bm_id5594043" localize="false"/>
-
-<paragraph id="hd_id9464094" role="heading" level="1" xml-lang="en-US">Links 
tab</paragraph>
-<paragraph id="par_id9302346" role="paragraph" xml-lang="en-US">Specify how to 
export bookmarks and hyperlinks in your document.</paragraph>
 <bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/export" 
id="bm_id5594042" localize="false"/>
-
-<paragraph id="hd_id8296151" role="heading" level="2" xml-lang="en-US">Export 
bookmarks as named destinations</paragraph>
-<paragraph id="par_id4809411" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">The bookmarks (targets of references) in PDF files can be defined as 
rectangular areas. Additionally, bookmarks to named objects can be defined by 
their names. Enable the checkbox to export the names of objects in your 
document as valid bookmark targets. This allows you to link to those objects by 
name from other documents.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/convert" 
id="bm_id6163823" localize="false"/>
-
-<paragraph id="hd_id6454969" role="heading" level="2" xml-lang="en-US">Convert 
document references to PDF targets</paragraph>
-<paragraph id="par_id7928708" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enable this checkbox to convert the URLs referencing other ODF files to 
PDF files with the same name. In the referencing URLs the extensions .odt, 
.odp, .ods, .odg, and .odm are converted to the extension 
.pdf.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/exporturl" 
id="bm_id9741508" localize="false"/>
-
-<paragraph id="hd_id3864253" role="heading" level="2" xml-lang="en-US">Export 
URLs relative to file system</paragraph>
-<paragraph id="par_id3144016" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enable this checkbox to export URLs to other documents as relative URLs 
in the file system. See <link 
href="text/shared/guide/hyperlink_rel_abs.xhp">"relative hyperlinks"</link> in 
the Help.</ahelp></paragraph>
-
-<paragraph id="hd_id9937131" role="heading" level="2" 
xml-lang="en-US">Cross-document links</paragraph>
-<paragraph id="par_id5616626" role="paragraph" xml-lang="en-US">Specify how to 
handle hyperlinks from your PDF file to other files.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/default" 
id="bm_id909451" localize="false"/>
-
-<paragraph id="hd_id1972106" role="heading" level="3" xml-lang="en-US">Default 
mode</paragraph>
-<paragraph id="par_id79042" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Links from your PDF document to other documents will be handled as it 
is specified in your operating system.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/openpdf" 
id="bm_id1665089" localize="false"/>
-
-<paragraph id="hd_id4076357" role="heading" level="3" xml-lang="en-US">Open 
with PDF reader application</paragraph>
-<paragraph id="par_id8231757" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Cross-document links are opened with the PDF reader application that 
currently shows the document. The PDF reader application must be able to handle 
the specified file type inside the hyperlink.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/openinternet" 
id="bm_id4997100" localize="false"/>
-
-<paragraph id="hd_id3168736" role="heading" level="3" xml-lang="en-US">Open 
with Internet browser</paragraph>
-<paragraph id="par_id1909848" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Cross-document links are opened with the Internet browser. The Internet 
browser must be able to handle the specified file type inside the 
hyperlink.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfsecuritypage/PdfSecurityPage" id="bm_id8720359" 
localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/@@nowidget@@" 
id="bm_id8720359" localize="false"/>
-
-<paragraph id="hd_id3068636" role="heading" level="1" 
xml-lang="en-US">Security tab</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/setpassword" 
id="bm_id8720358" localize="false"/>
-
-<paragraph id="hd_id2927335" role="heading" level="2" xml-lang="en-US">Set 
passwords</paragraph>
-<paragraph id="par_id2107303" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Click to open a dialog where you enter the 
passwords.</ahelp></paragraph>
-<paragraph id="par_id41123951" role="paragraph" xml-lang="en-US">You can 
specify a password needed to view the PDF. You can enter an optional password 
that allows the person viewing the PDF to edit and/or print the 
document.</paragraph>
-
-<paragraph id="hd_id7985168" role="heading" level="2" 
xml-lang="en-US">Printing</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/printnone" 
id="bm_id1476485" localize="false"/>
-
-<paragraph id="hd_id876186" role="heading" level="3" xml-lang="en-US">Not 
permitted</paragraph>
-<paragraph id="par_id3939634" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Printing the document is not permitted.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/printlow" 
id="bm_id1693472" localize="false"/>
-
-<paragraph id="hd_id599688" role="heading" level="3" xml-lang="en-US">Low 
resolution (150 dpi)</paragraph>
-<paragraph id="par_id1371501" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">The document can only be printed in low resolution (150 dpi). Not all 
PDF readers honor this setting.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/printhigh" 
id="bm_id8849147" localize="false"/>
-
-<paragraph id="hd_id4661702" role="heading" level="3" xml-lang="en-US">High 
resolution</paragraph>
-<paragraph id="par_id7868892" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">The document can be printed in high resolution.</ahelp></paragraph>
-
-<paragraph id="hd_id2188787" role="heading" level="2" 
xml-lang="en-US">Changes</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/changenone" 
id="bm_id8967253" localize="false"/>
-
-<paragraph id="hd_id5833307" role="heading" level="3" xml-lang="en-US">Not 
permitted</paragraph>
-<paragraph id="par_id7726676" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">No changes of the content are permitted.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/changeinsdel" 
id="bm_id53712" localize="false"/>
-
-<paragraph id="hd_id3729361" role="heading" level="3" 
xml-lang="en-US">Inserting, deleting, and rotating pages</paragraph>
-<paragraph id="par_id9573961" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Only inserting, deleting, and rotating pages is 
permitted.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/changeform" 
id="bm_id8904385" localize="false"/>
-
-<paragraph id="hd_id7700430" role="heading" level="3" xml-lang="en-US">Filling 
in form fields</paragraph>
-<paragraph id="par_id1180455" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Only filling in form fields is permitted.</ahelp></paragraph>
-<bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfsecuritypage/changecomment" id="bm_id677205" 
localize="false"/>
-
-<paragraph id="hd_id3405560" role="heading" level="3" 
xml-lang="en-US">Commenting, filling in form fields</paragraph>
-<paragraph id="par_id3409527" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Only commenting and filling in form fields is 
permitted.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/changeany" 
id="bm_id4991607" localize="false"/>
-
-<paragraph id="hd_id7112338" role="heading" level="3" xml-lang="en-US">Any 
except extracting pages</paragraph>
-<paragraph id="par_id2855616" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">All changes are permitted, except extracting pages.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/enablecopy" 
id="bm_id7106845" localize="false"/>
-
-<paragraph id="hd_id2091433" role="heading" level="2" xml-lang="en-US">Enable 
copying of content</paragraph>
-<paragraph id="par_id5092318" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to enable copying of content to the 
clipboard.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsecuritypage/enablea11y" 
id="bm_id3429059" localize="false"/>
-
-<paragraph id="hd_id9312417" role="heading" level="2" xml-lang="en-US">Enable 
text access for accessibility tools</paragraph>
-<paragraph id="par_id9089022" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to enable text access for accessibility 
tools.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/pdfsignpage" 
id="bm_id18720359" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/@@nowidget@@" 
id="bm_id18720359" localize="false"/>
-
-<paragraph id="hd_id13068636" role="heading" level="1" 
xml-lang="en-US">Digital Signatures tab</paragraph>
-<paragraph id="par_id22107303" role="paragraph" xml-lang="en-US">This tab 
contains the options related to exporting to a digitally signed PDF.</paragraph>
-<section id="digital_signature_pdf">
-<paragraph id="par_id22107304" role="paragraph" xml-lang="en-US">Digital 
signatures are used to ensure that the PDF was really created by the original 
author (i.e. you), and that the document has not been modified since it was 
signed.</paragraph>
-<paragraph id="par_id22107305" role="paragraph" xml-lang="en-US">The signed 
PDF export uses the keys and X.509 certificates already stored in your default 
key store location or on a smartcard.</paragraph>
-<switch select="sys">
-<case select="WIN">
-</case>
-<default>
-<paragraph id="par_id22107306" role="paragraph" xml-lang="en-US">The key store 
to be used can be selected under <switchinline select="sys"><caseinline 
select="MAC"><emph>%PRODUCTNAME - Preferences</emph>
-</caseinline><defaultinline><emph>Tools - 
Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - 
Certificate Path</emph>.</paragraph>
-</default>
-</switch>
-<paragraph id="par_id22107307" role="paragraph" xml-lang="en-US">When using a 
smartcard, it must already be configured for use by your key store. This is 
usually done during installation of the smartcard software.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/cert" 
id="bm_id18720358" localize="false"/>
-
-<paragraph id="hd_id12927335" role="heading" level="2" xml-lang="en-US">Use 
this certificate to digitally sign PDF documents</paragraph>
-<paragraph id="par_id12107303" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Allows you to select a certificate to be used for signing this PDF 
export.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/select" 
id="bm_id11476485" localize="false"/>
-
-<paragraph id="hd_id17985168" role="heading" level="2" 
xml-lang="en-US">Select</paragraph>
-<paragraph id="par_id12507303" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Opens the <emph>Select Certificate</emph> dialog.</ahelp></paragraph>
-<paragraph id="par_id12507403" role="paragraph" xml-lang="en-US">All 
certificates found in your selected key store are displayed. If the key store 
is protected by a password, you are prompted for it. When using a smartcard 
that is protected by a PIN, you are also prompted for that.</paragraph>
-<paragraph id="par_id12507503" role="paragraph" xml-lang="en-US">Select the 
certificate to use for digitally signing the exported PDF by clicking on the 
corresponding line, then click <emph>OK</emph>.</paragraph>
-<paragraph id="par_id12507603" role="paragraph" xml-lang="en-US">All other 
fields on the <emph>Digital Signatures</emph> tab will be accessible only after 
a certificate has been selected.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/password" 
id="bm_id21476485" localize="false"/>
-
-<paragraph id="hd_id1876186" role="heading" level="2" 
xml-lang="en-US">Certificate password</paragraph>
-<paragraph id="par_id13939634" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enter the password used for protecting the private key associated with 
the selected certificate.</ahelp> Usually this is the key store 
password.</paragraph>
-<paragraph id="par_id13932634" role="note" xml-lang="en-US">If the key store 
password has already been entered in the <emph>Select Certificate</emph> 
dialog, the key store may already be unlocked and not require the password 
again. But to be on the safe side, enter it nevertheless.</paragraph>
-<paragraph id="par_id13933634" role="warning" xml-lang="en-US">When using a 
smartcard, enter the PIN here. Some smartcard software will prompt you for the 
PIN again before signing. This is cumbersome, but that's how smartcards 
work.</paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/location" 
id="bm_id12693472" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/contact" 
id="bm_id13693472" localize="false"/>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/reason" 
id="bm_id14693472" localize="false"/>
-
-<paragraph id="hd_id1599688" role="heading" level="2" 
xml-lang="en-US">Location, Contact information, Reason</paragraph>
-<paragraph id="par_id11371501" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">These three fields allow you to optionally enter additional information 
about the digital signature that will be applied to the PDF (Where, by whom and 
why it was made). It will be embedded in the appropriate PDF fields and will be 
visible to anyone viewing the PDF. Each or all of the three fields may be left 
blank.</ahelp></paragraph>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/tsa" 
id="bm_id18849147" localize="false"/>
-
-<paragraph id="hd_id14661702" role="heading" level="2" xml-lang="en-US">Time 
Stamp Authority</paragraph>
-<paragraph id="par_id17868892" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Allows you to optionally select a Time Stamping Authority (TSA) URL. 
</ahelp></paragraph>
-<paragraph id="par_id29089022" role="paragraph" xml-lang="en-US">During the 
PDF signing process, the TSA will be used to obtain a digitally signed 
timestamp that is then embedded in the signature. This (RFC 3161) timestamp 
will allow anyone viewing the PDF to verify when the document was 
signed.</paragraph>
-<paragraph id="par_id39089022" role="paragraph" xml-lang="en-US">The list of 
TSA URLs that can be selected is maintained under <switchinline 
select="sys"><caseinline select="MAC"><emph>%PRODUCTNAME - Preferences</emph>
-</caseinline><defaultinline><emph>Tools - 
Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - 
TSAs</emph>.</paragraph>
-<paragraph id="par_id49089022" role="paragraph" xml-lang="en-US">If no TSA URL 
is selected (the default), the signature will not be timestamped, but will use 
the current time from your local computer.</paragraph>
-</section>
-<bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/ok" 
id="bm_id18849148" localize="false"/>
-<paragraph id="hd_id3150507" role="heading" level="1" xml-lang="en-US">Export 
button</paragraph>
+<h2 id="hd_id3150507">Export button</h2>
 <paragraph id="par_id3146975" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Exports the current file in PDF format.</ahelp></paragraph>
 </body>
-
 </helpdocument>
diff --git a/source/text/shared/01/ref_pdf_export_digital_signature.xhp 
b/source/text/shared/01/ref_pdf_export_digital_signature.xhp
new file mode 100644
index 000000000..94031fc98
--- /dev/null
+++ b/source/text/shared/01/ref_pdf_export_digital_signature.xhp
@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<helpdocument version="1.0">
+    <!--
+    * This file is part of the LibreOffice project.
+    *
+    * This Source Code Form is subject to the terms of the Mozilla Public
+    * License, v. 2.0. If a copy of the MPL was not distributed with this
+    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+    *
+    -->
+
+    <meta>
+        <topic id="pdfdigitalsignature" indexer="include" status="PUBLISH">
+            <title id="tit" xml-lang="en-US">PDF Export Digital 
Signature</title>
+            
<filename>/text/shared/01/ref_pdf_export_digital_signature.xhp</filename>
+        </topic>
+    </meta>
+    <body>
+    <bookmark xml-lang="en-US" branch="index" id="bm_id761574111929927">
+<bookmark_value>PDF export;digital signature</bookmark_value>
+<bookmark_value>PDF export;sign PDF document</bookmark_value>
+    </bookmark>
+    <section id="pdfexportdigitalsignature">
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfsignpage/pdfsignpage" id="bm_id18720359" 
localize="false"/>
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfsignpage/@@nowidget@@" id="bm_id18720359" 
localize="false"/>
+        <h1 id="hd_id13068636"><variable 
id="pdfexportdigitalsignatureh1"><link 
href="text/shared/01/ref_pdf_export_digital_signature.xhp" name="Digital 
Signatures">Digital Signatures</link></variable></h1>
+        <paragraph id="par_id22107303" role="paragraph" xml-lang="en-US">This 
tab contains the options related to exporting to a digitally signed 
PDF.</paragraph>
+    </section>
+
+    <section id="howtoget">
+        <embed href="text/shared/00/00000401.xhp#exportsignedpdf"/>
+    </section>
+    <paragraph id="par_id22107304" role="paragraph" xml-lang="en-US">Digital 
signatures are used to ensure that the PDF was really created by the original 
author (i.e. you), and that the document has not been modified since it was 
signed.</paragraph>
+    <paragraph id="par_id22107305" role="paragraph" xml-lang="en-US">The 
signed PDF export uses the keys and X.509 certificates already stored in your 
default key store location or on a smartcard.</paragraph>
+    <switch select="sys">
+        <case select="WIN"></case>
+        <default>
+            <paragraph id="par_id22107306" role="paragraph" 
xml-lang="en-US">The key store to be used can be selected under <switchinline 
select="sys"><caseinline select="MAC"><emph>%PRODUCTNAME - 
Preferences</emph></caseinline>
+                    <defaultinline><emph>Tools - 
Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - 
Certificate Path</emph>.</paragraph>
+        </default>
+    </switch>
+    <paragraph id="par_id22107307" role="paragraph" xml-lang="en-US">When 
using a smartcard, it must already be configured for use by your key store. 
This is usually done during installation of the smartcard software.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/cert" 
id="bm_id18720358" localize="false"/>
+
+    <h2 id="hd_id191574111792669">Certificate</h2>
+
+    <h3 id="hd_id12927335">Use this certificate to digitally sign PDF 
documents</h3>
+    <paragraph id="par_id12107303" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Allows you to select a certificate to be used for signing this PDF 
export.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/select" 
id="bm_id11476485" localize="false"/>
+
+    <h3 id="hd_id17985168">Select</h3>
+    <paragraph id="par_id12507303" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Opens the <emph>Select Certificate</emph> dialog.</ahelp></paragraph>
+    <paragraph id="par_id12507403" role="paragraph" xml-lang="en-US">All 
certificates found in your selected key store are displayed. If the key store 
is protected by a password, you are prompted for it. When using a smartcard 
that is protected by a PIN, you are also prompted for that.</paragraph>
+    <paragraph id="par_id12507503" role="paragraph" xml-lang="en-US">Select 
the certificate to use for digitally signing the exported PDF by clicking on 
the corresponding line, then click <emph>OK</emph>.</paragraph>
+    <paragraph id="par_id12507603" role="paragraph" xml-lang="en-US">All other 
fields on the <emph>Digital Signatures</emph> tab will be accessible only after 
a certificate has been selected.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/password" 
id="bm_id21476485" localize="false"/>
+
+    <h3 id="hd_id1876186">Certificate password</h3>
+    <paragraph id="par_id13939634" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enter the password used for protecting the private key associated with 
the selected certificate.</ahelp> Usually this is the key store 
password.</paragraph>
+    <note id="par_id13932634">If the key store password has already been 
entered in the <emph>Select Certificate</emph> dialog, the key store may 
already be unlocked and not require the password again. But to be on the safe 
side, enter it nevertheless.</note>
+    <warning id="par_id13933634">When using a smartcard, enter the PIN here. 
Some smartcard software will prompt you for the PIN again before signing. This 
is cumbersome, but that's how smartcards work.</warning>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/location" 
id="bm_id12693472" localize="false"/>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/contact" 
id="bm_id13693472" localize="false"/>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/reason" 
id="bm_id14693472" localize="false"/>
+
+    <h3 id="hd_id1599688">Location, Contact information, Reason</h3>
+    <paragraph id="par_id11371501" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">These three fields allow you to optionally enter additional information 
about the digital signature that will be applied to the PDF (Where, by whom and 
why it was made). It will be embedded in the appropriate PDF fields and will be 
visible to anyone viewing the PDF. Each or all of the three fields may be left 
blank.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfsignpage/tsa" 
id="bm_id18849147" localize="false"/>
+
+    <h3 id="hd_id14661702">Time Stamp Authority</h3>
+    <paragraph id="par_id17868892" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Allows you to optionally select a Time Stamping Authority (TSA) URL. 
</ahelp></paragraph>
+    <paragraph id="par_id29089022" role="paragraph" xml-lang="en-US">During 
the PDF signing process, the TSA will be used to obtain a digitally signed 
timestamp that is then embedded in the signature. This (RFC 3161) timestamp 
will allow anyone viewing the PDF to verify when the document was 
signed.</paragraph>
+    <paragraph id="par_id39089022" role="paragraph" xml-lang="en-US">The list 
of TSA URLs that can be selected is maintained under <switchinline 
select="sys"><caseinline select="MAC"><emph>%PRODUCTNAME - Preferences</emph>
+                </caseinline><defaultinline><emph>Tools - 
Options</emph></defaultinline></switchinline><emph> - %PRODUCTNAME - Security - 
TSAs</emph>.</paragraph>
+    <paragraph id="par_id49089022" role="paragraph" xml-lang="en-US">If no TSA 
URL is selected (the default), the signature will not be timestamped, but will 
use the current time from your local computer.</paragraph>
+    <section id="relatedtopics">
+        <paragraph role="paragraph" id="par_id421574099757770" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_general.xhp#pdfexportgeneralh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id821574099764178" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_initial_view.xhp#pdfexportinitialviewh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id671574099773507" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_user_interface.xhp#pdfexportuserinterfaceh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id131574099778762" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_links.xhp#pdfexportlinksh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id471574099784178" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_security.xhp#pdfexportsecurityh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id971574099788219" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export_digital_signature.xhp#pdfexportdigitalsignatureh1"/></paragraph>
+        <paragraph role="paragraph" id="par_id611574099984161" 
localize="false"><embedvar 
href="text/shared/01/ref_pdf_export.xhp#ref_pdf_export"/></paragraph>
+    </section>
+</body>
+</helpdocument>
diff --git a/source/text/shared/01/ref_pdf_export_general.xhp 
b/source/text/shared/01/ref_pdf_export_general.xhp
new file mode 100644
index 000000000..6cff5dd5a
--- /dev/null
+++ b/source/text/shared/01/ref_pdf_export_general.xhp
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<helpdocument version="1.0">
+    <!--
+    * This file is part of the LibreOffice project.
+    *
+    * This Source Code Form is subject to the terms of the Mozilla Public
+    * License, v. 2.0. If a copy of the MPL was not distributed with this
+    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+    *
+    -->
+
+    <meta>
+        <topic id="pdfexportgeneral" indexer="include" status="PUBLISH">
+            <title id="tit" xml-lang="en-US">PDEF Export General</title>
+            <filename>/text/shared/01/ref_pdf_export_general.xhp</filename>
+        </topic>
+    </meta>
+    <body>
+    <bookmark xml-lang="en-US" branch="index" id="bm_id611574100815898">
+<bookmark_value>PDF export;general options</bookmark_value>
+<bookmark_value>hybrid PDF</bookmark_value>
+<bookmark_value>PDF forms</bookmark_value>
+    </bookmark>
+    <section id="pdfexportgeneral">
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/PdfGeneralPage" id="bm_id1033968" 
localize="false"/>
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/@@nowidget@@" id="bm_id1033968" 
localize="false"/>
+        <h1 id="hd_id746482"><variable id="pdfexportgeneralh1"><link 
href="text/shared/01/ref_pdf_export_general.xhp" name="General 
tab">General</link></variable></h1>
+        <paragraph role="paragraph" id="par_id641574099149998">Sets the 
general options for exporting your document to a PDF file. Range, images, 
watermark, forms and other parameters.</paragraph>
+    </section>
+    <section id="howtoget">
+        <embed href="text/shared/00/00000401.xhp#exportpdfgeneral"/>
+    </section>
+    <h2 id="hd_id3148520">Range</h2>
+    <paragraph id="par_id3154230" role="paragraph" xml-lang="en-US">Sets the 
export options for the pages included in the PDF file.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/all" 
id="bm_id1033967" localize="false"/>
+
+    <h3 id="hd_id3166445">All</h3>
+    <paragraph id="par_id3149893" role="paragraph" xml-lang="en-US"><ahelp 
hid="filter/ui/pdfgeneralpage/all">Exports all defined print ranges. If no 
print range is defined, exports the entire document.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/range" 
id="bm_id2618793" localize="false"/>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/pages" 
id="bm_id2676778" localize="false"/>
+
+    <h3 id="hd_id3154673">Pages</h3>
+    <paragraph id="par_id3147571" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Exports the pages you type in the box.</ahelp></paragraph>
+    <paragraph id="par_id3145136" role="paragraph" xml-lang="en-US">To export 
a range of pages, use the format 3-6. To export single pages, use the format 
7;9;11. If you want, you can export a combination of page ranges and single 
pages, by using a format like 3-6;8;10;12.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/selection" 
id="bm_id8889126" localize="false"/>
+
+    <h3 id="hd_id3147043">Selection</h3>
+    <paragraph id="par_id3150774" role="paragraph" xml-lang="en-US"><ahelp 
hid="filter/ui/pdfgeneralpage/selection">Exports the current 
selection.</ahelp></paragraph>
+
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/usereferencexobject" 
id="bm_id141574106719731" localize="false"/>
+    <h3 id="hd_id871574106145581">View PDF after export</h3>
+    <paragraph role="paragraph" id="par_id631574106701788">Open the exported 
document in the system default PDF viewer.</paragraph>
+
+    <h2 id="par_idN10706">Images</h2>
+    <paragraph id="par_idN1070A" role="paragraph" xml-lang="en-US">Sets the 
PDF export options for images inside your document.</paragraph>
+    <note id="par_idN1071B">EPS images with embedded previews are exported 
only as previews. EPS images without embedded previews are exported as empty 
placeholders.</note>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/losslesscompress" id="bm_id8095950" 
localize="false"/>
+
+    <h3 id="par_idN10715">Lossless compression</h3>
+    <paragraph id="par_idN10719" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Selects a lossless compression of images. All pixels are 
preserved.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/jpegcompress" id="bm_id137028" 
localize="false"/>
+
+    <h3 id="par_idN10730">JPEG compression</h3>
+    <paragraph id="par_idN10734" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Selects a JPEG compression of images. With a high quality level, almost 
all pixels are preserved. With a low quality level, some pixels get lost and 
artefacts are introduced, but file sizes are reduced.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/quality" 
id="bm_id5849787" localize="false"/>
+
+    <h3 id="par_idN1074C">Quality</h3>
+    <paragraph id="par_idN10750" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enter the quality level for JPEG compression.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/reduceresolution" id="bm_id3947264" 
localize="false"/>
+
+    <h3 id="par_idN10767">Reduce image resolution</h3>
+    <paragraph id="par_idN1076B" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to resample or down-size the images to a lower number of pixels 
per inch.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/resolution" id="bm_id1751762" 
localize="false"/>
+    <paragraph id="par_idN10782" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select the target resolution for the images.</ahelp></paragraph>
+
+    <h2 id="hd_id141574104956415">Watermark</h2>
+    <paragraph role="paragraph" id="par_id341574104961922">Add a centered, 
vertical, light green watermark text to the page background. The watermark is 
not part of the source document.</paragraph>
+    <h3 id="hd_id381574104981670">Sign with watermark</h3>
+    <paragraph role="paragraph" id="par_id981574105202743">Check to enable the 
watermark signature.</paragraph>
+    <h3 id="hd_id511574105027966">Text</h3>
+    <paragraph role="paragraph" id="par_id361574105035733">Insert the text for 
the watermark signature.</paragraph>
+    <note id="par_id621574105378072">You cannot adjust the position, 
orientation and size of the watermark. The watermark is not stored in the 
source document.</note>
+    <h2 id="par_idN10791">General</h2>
+    <paragraph id="par_idN10795" role="paragraph" xml-lang="en-US">Sets 
general PDF export options.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/embed" 
id="bm_id0804200803552411" localize="false"/>
+
+    <h3 id="hd_id080420080355360">Hybrid PDF (embed ODF file)</h3>
+    <paragraph id="par_id0804200803553767" role="paragraph" 
xml-lang="en-US"><ahelp hid=".">This setting enables you to export the document 
as a .pdf file containing two file formats: PDF and ODF.</ahelp> In PDF viewers 
it behaves like a normal .pdf file and it remains fully editable in 
%PRODUCTNAME.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/pdfa" 
id="bm_id303964" localize="false"/>
+
+    <h3 id="hd_id2796411">Archive (PDF/A ISO 19005)</h3>
+    <paragraph id="par_id5016327" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Converts to the PDF/A-2b or PDF/A-1b format. This is defined as an 
electronic document file format for long term preservation. All fonts that were 
used in the source document will be embedded into the generated PDF file. PDF 
tags will be written.</ahelp></paragraph>
+
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/tagged" 
id="bm_id6884975" localize="false"/>
+
+    <h3 id="par_idN107A0">Tagged PDF (add document structure)</h3>
+    <paragraph id="par_idN107A4" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to write PDF tags. This can increase file size by huge 
amounts.</ahelp></paragraph>
+    <paragraph id="par_idN107B3" role="paragraph" xml-lang="en-US">Tagged PDF 
contains information about the structure of the document contents. This can 
help to display the document on devices with different screens, and when using 
screen reader software.</paragraph>
+
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/forms" 
id="bm_id9651478" localize="false"/>
+    <h3 id="par_idN107F4">Create PDF form</h3>
+    <paragraph id="par_id4909817" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Choose to create a PDF form. This can be filled out and printed by the 
user of the PDF document.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/format" 
id="bm_id3088167" localize="false"/>
+
+    <h3 id="hd_id6585283">Submit format</h3>
+    <paragraph id="par_idN107F8" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select the format of submitting forms from within the PDF 
file.</ahelp></paragraph>
+    <paragraph id="par_id0901200811454970" role="paragraph" 
xml-lang="en-US">Select the format of the data that you will receive from the 
submitter: FDF (Forms Data Format), PDF, HTML, or XML.</paragraph>
+    <paragraph id="par_idN10807" role="paragraph" xml-lang="en-US">This 
setting overrides the control's URL property that you set in the 
document.</paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/allowdups" 
id="bm_id3992267" localize="false"/>
+
+    <h3 id="hd_id1026200909535841">Allow duplicate field names</h3>
+    <paragraph id="par_id102620090953596" role="paragraph" 
xml-lang="en-US"><ahelp hid=".">Allows you to use the same field name for 
multiple fields in the generated PDF file. If disabled, field names will be 
exported using generated unique names.</ahelp></paragraph>
+
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/bookmarks" 
id="bm_id8694112" localize="false"/>
+    <h3 id="hd_id8257087">Export bookmarks</h3>
+    <paragraph id="par_id3479415" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to export bookmarks of Writer documents as PDF bookmarks. 
Bookmarks are created for all outline paragraphs (<item type="menuitem">Tools - 
Chapter Numbering</item>) and for all table of contents entries for which you 
did assign hyperlinks in the source document.</ahelp></paragraph>
+
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/exportplaceholders" id="bm_id7971129" 
localize="false"/>
+    <switch select="appl">
+        <case select="WRITER">
+            <h3 id="hd_id561574106156581">Export Placeholders</h3>
+            <paragraph role="paragraph" id="par_id851574109680187">Export the 
placeholders fields visual markings only. The exported placeholder is 
ineffective.</paragraph>
+        </case>
+    </switch>
+
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfgeneralpage/comments" 
id="bm_id7971129" localize="false"/>
+    <h3 id="par_idN107BE">Comments as PDF annotations</h3>
+    <paragraph id="par_idN107C2" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to export comments of Writer and Calc documents as PDF 
annotations.</ahelp></paragraph>
+    <paragraph id="par_idN207C2" role="paragraph" xml-lang="en-US">To export 
comments of Writer documents as they are shown in %PRODUCTNAME, choose 
<switchinline select="sys"><caseinline select="MAC"><menuitem>%PRODUCTNAME - 
Preferences</menuitem>
+                </caseinline><defaultinline><menuitem>Tools - 
Options</menuitem></defaultinline></switchinline><menuitem> - %PRODUCTNAME 
Writer - Print</menuitem> and select the <emph>In margins</emph> option in the 
<emph>Comments</emph> area. The exported pages will be scaled down and the 
comments will be placed into their margins.</paragraph>
+
+    <switch select="appl">
+        <case select="IMPRESS">
+            <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/notes" id="bm_id231574107141011" 
localize="false"/>
+            <h3 id="hd_id451574107102243">Export Notes Page</h3>
+            <paragraph role="paragraph" id="par_id971574108811475">Export also 
the Notes pages view at the end of the exported PDF presentation 
document.</paragraph>
+
+            <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/onlynotes" id="bm_id691574107146393" 
localize="false"/>
+            <h3 id="hd_id831574107106923">Export only notes page</h3>
+            <paragraph role="paragraph" id="par_id81574108064993">Exports only 
the Notes page views.</paragraph>
+        </case>
+    </switch>
+
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/singlepagesheets" id="bm_id5027619" 
localize="false"/>
+    <switch select="appl"><case select="CALC">
+            <h3 id="hd_id51574108224576">Full sheet previews</h3>
+            <paragraph role="paragraph" id="par_id81574108602417">Export one 
sheet per page.</paragraph>
+            </case></switch>
+
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/emptypages" id="bm_id5027619" 
localize="false"/>
+    <h3 id="hd_id3946958">Export automatically inserted blank pages</h3>
+    <paragraph id="par_id8551896" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">If switched on, automatically inserted blank pages are exported to the 
PDF file. This is best if you are printing the pdf file double-sided. Example: 
In a book a chapter paragraph style is set to always start with an odd numbered 
page. If the previous chapter ends on an odd page, %PRODUCTNAME inserts an even 
numbered blank page. This option controls whether to export that even numbered 
page or not.</ahelp></paragraph>
+
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfgeneralpage/usereferencexobject" id="bm_id5027620" 
localize="false"/>
+    <h3 id="hd_id3946959">Use reference XObjects</h3>
+    <paragraph id="par_id8551897" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">This option affects how PDF images are exported back to PDF. When this 
option is disabled, then the first page of the PDF data is included in the 
output. The PDF export merges the used images, fonts and other resources during 
export. This is a complex operation, but the result can be viewed in various 
viewers. When the option is enabled, then the reference XObject markup is used: 
this is a simple operation, but viewers have to support this markup to show 
vector images. Otherwise a fallback bitmap is shown in the 
viewer.</ahelp></paragraph>
+    <embed 
href="text/shared/01/ref_pdf_export_digital_signature.xhp#relatedtopics"/>
+</body>
+</helpdocument>
diff --git a/source/text/shared/01/ref_pdf_export_initial_view.xhp 
b/source/text/shared/01/ref_pdf_export_initial_view.xhp
new file mode 100644
index 000000000..2f0ab9f70
--- /dev/null
+++ b/source/text/shared/01/ref_pdf_export_initial_view.xhp
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<helpdocument version="1.0">
+    <!--
+    * This file is part of the LibreOffice project.
+    *
+    * This Source Code Form is subject to the terms of the Mozilla Public
+    * License, v. 2.0. If a copy of the MPL was not distributed with this
+    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+    *
+    -->
+
+    <meta>
+        <topic id="pdfexportinitialview" indexer="include" status="PUBLISH">
+            <title id="tit" xml-lang="en-US">PDF Export Initial View</title>
+            
<filename>/text/shared/01/ref_pdf_export_initial_view.xhp</filename>
+        </topic>
+    </meta>
+    <body>
+    <bookmark xml-lang="en-US" branch="index" id="bm_id501574100782266">
+<bookmark_value>PDF export;initial document view</bookmark_value>
+    </bookmark>
+    <section id="pdfexportinitialview">
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfviewpage/PdfViewPage" id="bm_id4472793" 
localize="false"/>
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfviewpage/@@nowidget@@" id="bm_id4472793" 
localize="false"/>
+        <h1 id="hd_id9796441"><variable id="pdfexportinitialviewh1"><link 
href="text/shared/01/ref_pdf_export_initial_view.xhp" name="Initial View 
tab">Initial View</link></variable></h1>
+        <paragraph role="paragraph" id="par_id631574099455028">Sets the 
options for the initial view of the PDF file in the external PDF 
viewer.</paragraph>
+    </section>
+    <section id="howtoget">
+        <embed href="text/shared/00/00000401.xhp#exportpdfinitialview"/>
+    </section>
+
+    <h2 id="hd_id1218604">Panes</h2>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/pageonly" 
id="bm_id4472792" localize="false"/>
+
+    <h3 id="hd_id7071443">Page only</h3>
+    <paragraph id="par_id1851557" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows only the page 
contents.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/outline" 
id="bm_id5274819" localize="false"/>
+
+    <h3 id="hd_id7464217">Bookmarks and page</h3>
+    <paragraph id="par_id4490188" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows a bookmarks palette and the 
page contents.</ahelp><comment>UFI: Adobe reader help names the panes as 
"palettes"</comment></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/thumbs" 
id="bm_id9964598" localize="false"/>
+
+    <h3 id="hd_id3581041">Thumbnails and page</h3>
+    <paragraph id="par_id956755" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows a thumbnails palette and the 
page contents.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/page" 
id="bm_id5693533" localize="false"/>
+
+    <h3 id="hd_id1905575">Open on page</h3>
+    <paragraph id="par_id9776909" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to show the given page when the reader opens the PDF 
file.</ahelp></paragraph>
+
+    <h2 id="hd_id7509994">Magnification</h2>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitdefault" 
id="bm_id7652821" localize="false"/>
+
+    <h3 id="hd_id5900143">Default</h3>
+    <paragraph id="par_id822168" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page contents without 
zooming. If the reader software is configured to use a zoom factor by default, 
the page shows with that zoom factor.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitwin" 
id="bm_id8959929" localize="false"/>
+
+    <h3 id="hd_id1092257">Fit in window</h3>
+    <paragraph id="par_id3092135" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page zoomed to fit 
entirely into the reader's window.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitwidth" 
id="bm_id5164342" localize="false"/>
+
+    <h3 id="hd_id654622">Fit width</h3>
+    <paragraph id="par_id814539" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the page zoomed to fit the 
width of the reader's window.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitvis" 
id="bm_id4881435" localize="false"/>
+
+    <h3 id="hd_id9883114">Fit visible</h3>
+    <paragraph id="par_id2362437" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the text and graphics on the 
page zoomed to fit the width of the reader's window.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/fitzoom" 
id="bm_id3769035" localize="false"/>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/zoom" 
id="bm_id2727134" localize="false"/>
+
+    <h3 id="hd_id7296975">Zoom factor</h3>
+    <paragraph id="par_id371715" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select a given zoom factor when the reader opens the PDF 
file.</ahelp></paragraph>
+
+    <h2 id="hd_id329905">Page layout</h2>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfviewpage/defaultlayout" id="bm_id2023682" 
localize="false"/>
+
+    <h3 id="hd_id5632496">Default</h3>
+    <paragraph id="par_id1694082" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows the pages according to the 
layout setting of the reader software.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/singlelayout" 
id="bm_id863368" localize="false"/>
+
+    <h3 id="hd_id8454237">Single page</h3>
+    <paragraph id="par_id672322" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows one page at a 
time.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/contlayout" 
id="bm_id3083590" localize="false"/>
+
+    <h3 id="hd_id7387310">Continuous</h3>
+    <paragraph id="par_id8764305" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages in a continuous vertical 
column.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdfviewpage/contfacinglayout" id="bm_id5062410" 
localize="false"/>
+
+    <h3 id="hd_id6223639">Continuous facing</h3>
+    <paragraph id="par_id5318765" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages side by side in a 
continuous column. For more than two pages, the first page is displayed on the 
right.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdfviewpage/firstonleft" 
id="bm_id9036835" localize="false"/>
+
+    <h3 id="hd_id1416364">First page is left</h3>
+    <paragraph id="par_id9596850" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Select to generate a PDF file that shows pages side by side in a 
continuous column. For more than two pages, the first page is displayed on the 
left. You must enable support for complex text layout on Language settings - 
Languages in the Options dialog box.</ahelp></paragraph>
+    <embed 
href="text/shared/01/ref_pdf_export_digital_signature.xhp#relatedtopics"/>
+</body>
+</helpdocument>
diff --git a/source/text/shared/01/ref_pdf_export_links.xhp 
b/source/text/shared/01/ref_pdf_export_links.xhp
new file mode 100644
index 000000000..20f2c1407
--- /dev/null
+++ b/source/text/shared/01/ref_pdf_export_links.xhp
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<helpdocument version="1.0">
+    <!--
+    * This file is part of the LibreOffice project.
+    *
+    * This Source Code Form is subject to the terms of the Mozilla Public
+    * License, v. 2.0. If a copy of the MPL was not distributed with this
+    * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+    *
+    -->
+
+    <meta>
+        <topic id="pdfexportlinks" indexer="include" status="PUBLISH">
+            <title id="tit" xml-lang="en-US">page_ttile</title>
+            <filename>/text/shared/01/ref_pdf_export_links.xhp</filename>
+        </topic>
+    </meta>
+    <body>
+    <bookmark xml-lang="en-US" branch="index" id="bm_id891574100750278">
+<bookmark_value>PDF export;links</bookmark_value>
+    </bookmark>
+    <section id="pdfexportlinks">
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdflinkspage/PdfLinksPage" id="bm_id5594043" 
localize="false"/>
+        <bookmark xml-lang="en-US" 
branch="hid/filter/ui/pdflinkspage/@@nowidget@@" id="bm_id5594043" 
localize="false"/>
+        <h1 id="hd_id9464094"><variable id="pdfexportlinksh1"><link 
href="text/shared/01/ref_pdf_export_links.xhp" name="Links 
tab">Links</link></variable></h1>
+        <paragraph id="par_id9302346" role="paragraph" 
xml-lang="en-US">Specify how to export bookmarks and hyperlinks in your 
document.</paragraph>
+    </section>
+    <section id="howtoget">
+        <embed href="text/shared/00/00000401.xhp#exportpdflinks"/>
+    </section>
+
+    <h2 id="hd_id8296151">Export bookmarks as named destinations</h2>
+    <paragraph id="par_id4809411" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">The bookmarks (targets of references) in PDF files can be defined as 
rectangular areas. Additionally, bookmarks to named objects can be defined by 
their names. Enable the checkbox to export the names of objects in your 
document as valid bookmark targets. This allows you to link to those objects by 
name from other documents.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/convert" 
id="bm_id6163823" localize="false"/>
+
+    <h2 id="hd_id6454969">Convert document references to PDF targets</h2>
+    <paragraph id="par_id7928708" role="paragraph" xml-lang="en-US"><ahelp 
hid=".">Enable this checkbox to convert the URLs referencing other ODF files to 
PDF files with the same name. In the referencing URLs the extensions .odt, 
.odp, .ods, .odg, and .odm are converted to the extension 
.pdf.</ahelp></paragraph>
+    <bookmark xml-lang="en-US" branch="hid/filter/ui/pdflinkspage/exporturl" 
id="bm_id9741508" localize="false"/>
+

... etc. - the rest is truncated
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to