EPUB export + Writer2LaTeX help content

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@59 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2010-04-16 10:49:28 +00:00
parent 93d1e472c6
commit a1102046c3
13 changed files with 532 additions and 81 deletions

Binary file not shown.

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-04-12)
* Version 1.2 (2010-04-16)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.2";
private static final String DATE = "2010-04-12";
private static final String DATE = "2010-04-16";
/** Return the Writer2LaTeX version in the form
* (major version).(minor version).(patch level)<br/>

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-28)
* Version 1.2 (2010-04-13)
*
*/
@ -62,31 +62,49 @@ public interface ConverterResult {
*/
public List<ContentEntry> getContent();
/** Get the entry which contains the table of contents
/** Get the entry which contains the table page
*
* @return the entry or null if there is no title page
*/
public ContentEntry getTitlePageFile();
/** Get the entry which contains the start of the actual text (the first chapter, or simply the start of
* the document if there are no headings)
*
* @return the entry
*/
public ContentEntry getTextFile();
/** Get the entry which contains the table of contents
*
* @return the entry or null if a table of content does not exist
*/
public ContentEntry getTocFile();
/** Get the entry which contains the list of tables
*
* @return the entry
* @return the entry or null if a list of tables does not exist
*/
public ContentEntry getLotFile();
/** Get the entry which contains the list of figures
*
* @return the entry
* @return the entry or null if a list of figures does not exist
*/
public ContentEntry getLofFile();
/** Get the entry which contains the alphabetical index
*
* @return the entry
* @return the entry or null if an alphabetical index does not exist
*/
public ContentEntry getIndexFile();
/** Get the entry which contains the bibliography
*
* @return the entry or null if a bibliography does not exist
*/
public ContentEntry getBibliographyFile();
/** Write all files of the <code>ConverterResult</code> to a directory.
* Subdirectories are created as required by the individual
* <code>OutputFile</code>s.

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-03-28)
* Version 1.2 (2010-04-13)
*
*/
@ -46,10 +46,13 @@ public class ConverterResultImpl implements ConverterResult {
private List<OutputFile> files;
private List<ContentEntry> content;
private ContentEntry titlePageFile;
private ContentEntry textFile;
private ContentEntry tocFile;
private ContentEntry lofFile;
private ContentEntry lotFile;
private ContentEntry indexFile;
private ContentEntry bibliographyFile;
private MetaData metaData = null;
@ -67,10 +70,13 @@ public class ConverterResultImpl implements ConverterResult {
public void reset() {
files = new Vector<OutputFile>();
content = new Vector<ContentEntry>();
titlePageFile = null;
textFile = null;
tocFile = null;
lofFile = null;
lotFile = null;
indexFile = null;
bibliographyFile = null;
metaData = null;
nMasterCount = 0;
}
@ -119,6 +125,30 @@ public class ConverterResultImpl implements ConverterResult {
return Collections.unmodifiableList(content);
}
/** Define the entry which contains the title page
*
* @param entry the entry
*/
public void setTitlePageFile(ContentEntry entry) {
titlePageFile = entry;
}
public ContentEntry getTitlePageFile() {
return titlePageFile;
}
/** Define the entry which contains the main text file
*
* @param entry the entry
*/
public void setTextFile(ContentEntry entry) {
textFile = entry;
}
public ContentEntry getTextFile() {
return textFile;
}
/** Define the entry which contains the table of contents
*
* @param entry the entry
@ -167,6 +197,18 @@ public class ConverterResultImpl implements ConverterResult {
return indexFile;
}
/** Define the entry which contains the bibliography
*
* @param entry the entry
*/
public void setBibliographyFile(ContentEntry entry) {
bibliographyFile = entry;
}
public ContentEntry getBibliographyFile() {
return bibliographyFile;
}
/** Set the meta data of this <code>ConverterResult</code>
*
* @param metaData the meta data

View file

@ -129,15 +129,13 @@ public class OPFWriter extends NewDOMDocument {
// The guide may contain references to some fundamental structural components
Element guide = contentDOM.createElement("guide");
pack.appendChild(guide);
addGuideReference(contentDOM,guide,"title-page",cr.getTitlePageFile());
addGuideReference(contentDOM,guide,"text",cr.getTextFile());
addGuideReference(contentDOM,guide,"toc",cr.getTocFile());
addGuideReference(contentDOM,guide,"index",cr.getIndexFile());
addGuideReference(contentDOM,guide,"loi",cr.getLofFile());
addGuideReference(contentDOM,guide,"lot",cr.getLotFile());
// TODO addGuideReference(contentDOM,guide,"bibliography",cr.getBibliographyile());
List<ContentEntry> contents = cr.getContent();
if (contents.size()>0) {
addGuideReference(contentDOM,guide,"text",contents.get(0));
}
addGuideReference(contentDOM,guide,"bibliography",cr.getBibliographyFile());
setContentDOM(contentDOM);
}

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-04-12)
* Version 1.2 (2010-04-13)
*
*/
@ -44,6 +44,7 @@ import org.w3c.dom.NodeList;
import org.w3c.dom.Text;
import writer2latex.api.Config;
import writer2latex.api.ContentEntry;
import writer2latex.api.ConverterFactory;
//import writer2latex.api.ConverterResult;
import writer2latex.base.ContentEntryImpl;
@ -209,7 +210,6 @@ public class Converter extends ConverterBase {
}
}
//NodeList list;
// Traverse the body
Element body = ofr.getContent();
if (ofr.isSpreadsheet()) { tableCv.convertTableContent(body); }
@ -219,6 +219,21 @@ public class Converter extends ConverterBase {
// Add footnotes and endnotes
textCv.insertFootnotes(htmlDoc.getContentNode());
textCv.insertEndnotes(htmlDoc.getContentNode());
// Set the title page and text page entries
if (converterResult.getContent().isEmpty()) {
// No headings in the document: There is no title page and the text page is the first page
converterResult.setTextFile(new ContentEntryImpl("Text", 1, outFiles.get(0), null));
// We also have to add a toc entry (the ncx file cannot be empty)
converterResult.addContentEntry(new ContentEntryImpl("Text", 1, outFiles.get(0), null));
}
else {
// The title page is the first page
converterResult.setTitlePageFile(new ContentEntryImpl("Title page", 1, outFiles.get(0), null));
// The text page is the one containing the first heading
ContentEntry firstHeading = converterResult.getContent().get(0);
converterResult.setTextFile(new ContentEntryImpl("Text", 1, firstHeading.getFile(), firstHeading.getTarget()));
}
// Resolve links
ListIterator<LinkDescriptor> iter = links.listIterator();
@ -237,8 +252,8 @@ public class Converter extends ConverterBase {
}
}
// Add included style sheet, if any
if (styleSheet!=null) {
// Add included style sheet, if any - and we are creating OPS content
if (bOPS && styleSheet!=null) {
converterResult.addDocument(styleSheet);
}
@ -529,42 +544,45 @@ public class Converter extends ConverterBase {
meta.setAttribute("content","text/html; charset="+htmlDoc.getEncoding().toLowerCase());
htmlDoc.getHeadNode().appendChild(meta);
}
// "Traditional" meta data
//createMeta("generator","Writer2LaTeX "+Misc.VERSION);
createMeta("description",metaData.getDescription());
createMeta("keywords",metaData.getKeywords());
// Add meta data (for EPUB the meta data belongs to the .opf file)
if (!bOPS) {
// "Traditional" meta data
//createMeta("generator","Writer2LaTeX "+Misc.VERSION);
createMeta("description",metaData.getDescription());
createMeta("keywords",metaData.getKeywords());
// Dublin core meta data (optional)
// Format as recommended on dublincore.org
// Declare meta data profile
if (config.xhtmlUseDublinCore()) {
htmlDoc.getHeadNode().setAttribute("profile","http://dublincore.org/documents/dcq-html/");
// Add link to declare namespace
Element dclink = htmlDOM.createElement("link");
dclink.setAttribute("rel","schema.DC");
dclink.setAttribute("href","http://purl.org/dc/elements/1.1/");
htmlDoc.getHeadNode().appendChild(dclink);
// Insert the actual meta data
createMeta("DC.title",metaData.getTitle());
// DC.subject actually contains subject+keywords, so we merge them
String sDCSubject = "";
if (metaData.getSubject()!=null && metaData.getSubject().length()>0) {
sDCSubject = metaData.getSubject();
}
if (metaData.getKeywords()!=null && metaData.getKeywords().length()>0) {
if (sDCSubject.length()>0) { sDCSubject+=", "; }
sDCSubject += metaData.getKeywords();
}
createMeta("DC.subject",sDCSubject);
createMeta("DC.description",metaData.getDescription());
createMeta("DC.creator",metaData.getCreator());
createMeta("DC.date",metaData.getDate());
createMeta("DC.language",metaData.getLanguage());
// Dublin core meta data (optional)
// Format as recommended on dublincore.org
// Declare meta data profile
if (config.xhtmlUseDublinCore()) {
htmlDoc.getHeadNode().setAttribute("profile","http://dublincore.org/documents/dcq-html/");
// Add link to declare namespace
Element dclink = htmlDOM.createElement("link");
dclink.setAttribute("rel","schema.DC");
dclink.setAttribute("href","http://purl.org/dc/elements/1.1/");
htmlDoc.getHeadNode().appendChild(dclink);
// Insert the actual meta data
createMeta("DC.title",metaData.getTitle());
// DC.subject actually contains subject+keywords, so we merge them
String sDCSubject = "";
if (metaData.getSubject()!=null && metaData.getSubject().length()>0) {
sDCSubject = metaData.getSubject();
}
if (metaData.getKeywords()!=null && metaData.getKeywords().length()>0) {
if (sDCSubject.length()>0) { sDCSubject+=", "; }
sDCSubject += metaData.getKeywords();
}
createMeta("DC.subject",sDCSubject);
createMeta("DC.description",metaData.getDescription());
createMeta("DC.creator",metaData.getCreator());
createMeta("DC.date",metaData.getDate());
createMeta("DC.language",metaData.getLanguage());
}
}
// Add link to stylesheet
if (config.xhtmlCustomStylesheet().length()>0) {
// Add link to stylesheet, if producing nomral XHTML
if (!bOPS && config.xhtmlCustomStylesheet().length()>0) {
Element htmlStyle = htmlDOM.createElement("link");
htmlStyle.setAttribute("rel","stylesheet");
htmlStyle.setAttribute("type","text/css");
@ -583,8 +601,8 @@ public class Converter extends ConverterBase {
}*/
// Note: For single output file, styles are exported to the doc at the end.
// Add link to included style sheet
if (styleSheet!=null) {
// Add link to included style sheet if producing OPS content
if (bOPS && styleSheet!=null) {
Element sty = htmlDOM.createElement("link");
sty.setAttribute("rel", "stylesheet");
sty.setAttribute("type", "text/css");

View file

@ -37,5 +37,9 @@
manifest:full-path="writer2latex.rdb"
manifest:media-type="application/vnd.sun.star.uno-typelibrary;type=RDB"/>
<manifest:file-entry
manifest:full-path="help"
manifest:media-type="application/vnd.sun.star.help"/>
</manifest:manifest>

View file

@ -5,7 +5,7 @@
<dlg:fixedline dlg:id="FixedLine1" dlg:tab-index="0" dlg:left="179" dlg:top="8" dlg:width="2" dlg:height="222" dlg:help-text="&amp;2.LaTeXOptions.FixedLine1.HelpText" dlg:value="&amp;3.LaTeXOptions.FixedLine1.Label" dlg:align="vertical"/>
<dlg:text dlg:id="GeneralLabel" dlg:tab-index="1" dlg:left="5" dlg:top="8" dlg:width="156" dlg:height="12" dlg:help-text="&amp;4.LaTeXOptions.GeneralLabel.HelpText" dlg:value="&amp;5.LaTeXOptions.GeneralLabel.Label"/>
<dlg:text dlg:id="ConfigLabel" dlg:tab-index="2" dlg:left="12" dlg:top="22" dlg:width="47" dlg:height="12" dlg:help-text="&amp;6.LaTeXOptions.ConfigLabel.HelpText" dlg:value="&amp;7.LaTeXOptions.ConfigLabel.Label"/>
<dlg:menulist dlg:id="Config" dlg:tab-index="3" dlg:left="65" dlg:top="20" dlg:width="96" dlg:height="12" dlg:help-text="&amp;8.LaTeXOptions.Config.HelpText" dlg:spin="true" dlg:linecount="6">
<dlg:menulist dlg:id="Config" dlg:tab-index="3" dlg:left="65" dlg:top="20" dlg:width="96" dlg:height="12" dlg:help-text="&amp;8.LaTeXOptions.Config.HelpText" dlg:spin="true" dlg:linecount="6" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsConfig">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;137.Config.StringItemList"/>
<dlg:menuitem dlg:value="&amp;138.Config.StringItemList"/>
@ -17,7 +17,7 @@
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:ConfigChange" script:language="UNO"/>
</dlg:menulist>
<dlg:text dlg:id="BackendLabel" dlg:tab-index="4" dlg:left="12" dlg:top="36" dlg:width="47" dlg:height="12" dlg:help-text="&amp;15.LaTeXOptions.BackendLabel.HelpText" dlg:value="&amp;16.LaTeXOptions.BackendLabel.Label"/>
<dlg:menulist dlg:id="Backend" dlg:tab-index="5" dlg:left="65" dlg:top="34" dlg:width="96" dlg:height="12" dlg:help-text="&amp;17.LaTeXOptions.Backend.HelpText" dlg:spin="true">
<dlg:menulist dlg:id="Backend" dlg:tab-index="5" dlg:left="65" dlg:top="34" dlg:width="96" dlg:height="12" dlg:help-text="&amp;17.LaTeXOptions.Backend.HelpText" dlg:spin="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsBackend">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;116.Backend.StringItemList"/>
<dlg:menuitem dlg:value="&amp;117.Backend.StringItemList"/>
@ -28,7 +28,7 @@
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:BackendChange" script:language="UNO"/>
</dlg:menulist>
<dlg:text dlg:id="InputencodingLabel" dlg:tab-index="6" dlg:left="12" dlg:top="50" dlg:width="47" dlg:height="12" dlg:help-text="&amp;22.LaTeXOptions.InputencodingLabel.HelpText" dlg:value="&amp;23.LaTeXOptions.InputencodingLabel.Label"/>
<dlg:menulist dlg:id="Inputencoding" dlg:tab-index="7" dlg:left="65" dlg:top="48" dlg:width="96" dlg:height="12" dlg:help-text="&amp;24.LaTeXOptions.Inputencoding.HelpText" dlg:spin="true" dlg:linecount="8">
<dlg:menulist dlg:id="Inputencoding" dlg:tab-index="7" dlg:left="65" dlg:top="48" dlg:width="96" dlg:height="12" dlg:help-text="&amp;24.LaTeXOptions.Inputencoding.HelpText" dlg:spin="true" dlg:linecount="8" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsInputencoding">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;120.Inputencoding.StringItemList"/>
<dlg:menuitem dlg:value="&amp;121.Inputencoding.StringItemList"/>
@ -40,15 +40,15 @@
<dlg:menuitem dlg:value="&amp;127.Inputencoding.StringItemList"/>
</dlg:menupopup>
</dlg:menulist>
<dlg:checkbox dlg:id="Multilingual" dlg:tab-index="8" dlg:left="12" dlg:top="64" dlg:width="149" dlg:height="12" dlg:help-text="&amp;33.LaTeXOptions.Multilingual.HelpText" dlg:value="&amp;34.LaTeXOptions.Multilingual.Label" dlg:checked="true"/>
<dlg:checkbox dlg:id="GreekMath" dlg:tab-index="9" dlg:left="12" dlg:top="78" dlg:width="149" dlg:height="12" dlg:help-text="&amp;35.LaTeXOptions.GreekMath.HelpText" dlg:value="&amp;36.LaTeXOptions.GreekMath.Label" dlg:checked="true"/>
<dlg:checkbox dlg:id="AdditionalSymbols" dlg:tab-index="10" dlg:left="12" dlg:top="92" dlg:width="149" dlg:height="12" dlg:help-text="&amp;37.LaTeXOptions.AdditionalSymbols.HelpText" dlg:value="&amp;38.LaTeXOptions.AdditionalSymbols.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="Multilingual" dlg:tab-index="8" dlg:left="12" dlg:top="64" dlg:width="149" dlg:height="12" dlg:help-text="&amp;33.LaTeXOptions.Multilingual.HelpText" dlg:value="&amp;34.LaTeXOptions.Multilingual.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsMultilingual"/>
<dlg:checkbox dlg:id="GreekMath" dlg:tab-index="9" dlg:left="12" dlg:top="78" dlg:width="149" dlg:height="12" dlg:help-text="&amp;35.LaTeXOptions.GreekMath.HelpText" dlg:value="&amp;36.LaTeXOptions.GreekMath.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsGreekMath"/>
<dlg:checkbox dlg:id="AdditionalSymbols" dlg:tab-index="10" dlg:left="12" dlg:top="92" dlg:width="149" dlg:height="12" dlg:help-text="&amp;37.LaTeXOptions.AdditionalSymbols.HelpText" dlg:value="&amp;38.LaTeXOptions.AdditionalSymbols.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsAdditionalSymbols"/>
<dlg:text dlg:id="BibliographyLabel" dlg:tab-index="11" dlg:left="5" dlg:top="106" dlg:width="156" dlg:height="12" dlg:help-text="&amp;39.LaTeXOptions.BibliographyLabel.HelpText" dlg:value="&amp;40.LaTeXOptions.BibliographyLabel.Label"/>
<dlg:checkbox dlg:id="UseBibtex" dlg:tab-index="12" dlg:left="12" dlg:top="120" dlg:width="149" dlg:height="12" dlg:help-text="&amp;41.LaTeXOptions.UseBibtex.HelpText" dlg:value="&amp;42.LaTeXOptions.UseBibtex.Label" dlg:checked="true">
<dlg:checkbox dlg:id="UseBibtex" dlg:tab-index="12" dlg:left="12" dlg:top="120" dlg:width="149" dlg:height="12" dlg:help-text="&amp;41.LaTeXOptions.UseBibtex.HelpText" dlg:value="&amp;42.LaTeXOptions.UseBibtex.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsUseBibtex">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:UseBibtexChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:text dlg:id="BibtexStyleLabel" dlg:tab-index="13" dlg:left="22" dlg:top="134" dlg:width="37" dlg:height="12" dlg:help-text="&amp;43.LaTeXOptions.BibtexStyleLabel.HelpText" dlg:value="&amp;44.LaTeXOptions.BibtexStyleLabel.Label"/>
<dlg:combobox dlg:id="BibtexStyle" dlg:tab-index="14" dlg:left="65" dlg:top="132" dlg:width="96" dlg:height="12" dlg:help-text="&amp;45.LaTeXOptions.BibtexStyle.HelpText" dlg:value="&amp;50.LaTeXOptions.BibtexStyle.Text" dlg:spin="true">
<dlg:combobox dlg:id="BibtexStyle" dlg:tab-index="14" dlg:left="65" dlg:top="132" dlg:width="96" dlg:height="12" dlg:help-text="&amp;45.LaTeXOptions.BibtexStyle.HelpText" dlg:value="&amp;50.LaTeXOptions.BibtexStyle.Text" dlg:spin="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsBibtexStyle">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;46.BibtexStyle.StringItemList"/>
<dlg:menuitem dlg:value="&amp;47.BibtexStyle.StringItemList"/>
@ -57,17 +57,17 @@
</dlg:menupopup>
</dlg:combobox>
<dlg:text dlg:id="FilesLabel" dlg:tab-index="15" dlg:left="5" dlg:top="148" dlg:width="156" dlg:height="12" dlg:help-text="&amp;51.LaTeXOptions.FilesLabel.HelpText" dlg:value="&amp;52.LaTeXOptions.FilesLabel.Label"/>
<dlg:checkbox dlg:id="WrapLines" dlg:tab-index="16" dlg:left="12" dlg:top="162" dlg:width="139" dlg:height="12" dlg:help-text="&amp;53.LaTeXOptions.WrapLines.HelpText" dlg:value="&amp;54.LaTeXOptions.WrapLines.Label" dlg:checked="false">
<dlg:checkbox dlg:id="WrapLines" dlg:tab-index="16" dlg:left="12" dlg:top="162" dlg:width="139" dlg:height="12" dlg:help-text="&amp;53.LaTeXOptions.WrapLines.HelpText" dlg:value="&amp;54.LaTeXOptions.WrapLines.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsWrapLines">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:WrapLinesChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:text dlg:id="WrapLinesAfterLabel" dlg:tab-index="17" dlg:left="22" dlg:top="176" dlg:width="90" dlg:height="12" dlg:help-text="&amp;55.LaTeXOptions.WrapLinesAfterLabel.HelpText" dlg:value="&amp;56.LaTeXOptions.WrapLinesAfterLabel.Label"/>
<dlg:numericfield dlg:id="WrapLinesAfter" dlg:tab-index="18" dlg:left="128" dlg:top="174" dlg:width="32" dlg:height="12" dlg:help-text="&amp;57.LaTeXOptions.WrapLinesAfter.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="72" dlg:value-min="1" dlg:value-max="1000" dlg:spin="true" dlg:repeat="50"/>
<dlg:checkbox dlg:id="SplitLinkedSections" dlg:tab-index="19" dlg:left="12" dlg:top="190" dlg:width="149" dlg:height="12" dlg:help-text="&amp;58.LaTeXOptions.SplitLinkedSections.HelpText" dlg:value="&amp;59.LaTeXOptions.SplitLinkedSections.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="SplitToplevelSections" dlg:tab-index="20" dlg:left="12" dlg:top="204" dlg:width="160" dlg:height="12" dlg:help-text="&amp;60.LaTeXOptions.SplitToplevelSections.HelpText" dlg:value="&amp;61.LaTeXOptions.SplitToplevelSections.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="SaveImagesInSubdir" dlg:tab-index="21" dlg:left="12" dlg:top="218" dlg:width="149" dlg:height="12" dlg:help-text="&amp;62.LaTeXOptions.SaveImagesInSubdir.HelpText" dlg:value="&amp;63.LaTeXOptions.SaveImagesInSubdir.Label" dlg:checked="false"/>
<dlg:numericfield dlg:id="WrapLinesAfter" dlg:tab-index="18" dlg:left="128" dlg:top="174" dlg:width="32" dlg:height="12" dlg:help-text="&amp;57.LaTeXOptions.WrapLinesAfter.HelpText" dlg:strict-format="true" dlg:decimal-accuracy="0" dlg:value="72" dlg:value-min="1" dlg:value-max="1000" dlg:spin="true" dlg:repeat="50" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsWrapLinesAfter"/>
<dlg:checkbox dlg:id="SplitLinkedSections" dlg:tab-index="19" dlg:left="12" dlg:top="190" dlg:width="149" dlg:height="12" dlg:help-text="&amp;58.LaTeXOptions.SplitLinkedSections.HelpText" dlg:value="&amp;59.LaTeXOptions.SplitLinkedSections.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsSplitLinkedSections"/>
<dlg:checkbox dlg:id="SplitToplevelSections" dlg:tab-index="20" dlg:left="12" dlg:top="204" dlg:width="160" dlg:height="12" dlg:help-text="&amp;60.LaTeXOptions.SplitToplevelSections.HelpText" dlg:value="&amp;61.LaTeXOptions.SplitToplevelSections.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsSplitToplevelSections"/>
<dlg:checkbox dlg:id="SaveImagesInSubdir" dlg:tab-index="21" dlg:left="12" dlg:top="218" dlg:width="149" dlg:height="12" dlg:help-text="&amp;62.LaTeXOptions.SaveImagesInSubdir.HelpText" dlg:value="&amp;63.LaTeXOptions.SaveImagesInSubdir.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsSaveImagesInSubdir"/>
<dlg:text dlg:id="SpecialContentLabel" dlg:tab-index="22" dlg:left="186" dlg:top="8" dlg:width="156" dlg:height="12" dlg:help-text="&amp;64.LaTeXOptions.SpecialContentLabel.HelpText" dlg:value="&amp;65.LaTeXOptions.SpecialContentLabel.Label"/>
<dlg:text dlg:id="NotesLabel" dlg:tab-index="23" dlg:left="193" dlg:top="22" dlg:width="47" dlg:height="12" dlg:help-text="&amp;66.LaTeXOptions.NotesLabel.HelpText" dlg:value="&amp;67.LaTeXOptions.NotesLabel.Label"/>
<dlg:menulist dlg:id="Notes" dlg:tab-index="24" dlg:left="246" dlg:top="20" dlg:width="96" dlg:height="12" dlg:help-text="&amp;68.LaTeXOptions.Notes.HelpText" dlg:spin="true" dlg:linecount="4">
<dlg:menulist dlg:id="Notes" dlg:tab-index="24" dlg:left="246" dlg:top="20" dlg:width="96" dlg:height="12" dlg:help-text="&amp;68.LaTeXOptions.Notes.HelpText" dlg:spin="true" dlg:linecount="4" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsNotes">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;128.Notes.StringItemList"/>
<dlg:menuitem dlg:value="&amp;129.Notes.StringItemList"/>
@ -75,22 +75,22 @@
<dlg:menuitem dlg:value="&amp;131.Notes.StringItemList"/>
</dlg:menupopup>
</dlg:menulist>
<dlg:checkbox dlg:id="Metadata" dlg:tab-index="25" dlg:left="193" dlg:top="36" dlg:width="149" dlg:height="12" dlg:help-text="&amp;73.LaTeXOptions.Metadata.HelpText" dlg:value="&amp;74.LaTeXOptions.Metadata.Label" dlg:checked="true"/>
<dlg:checkbox dlg:id="Metadata" dlg:tab-index="25" dlg:left="193" dlg:top="36" dlg:width="149" dlg:height="12" dlg:help-text="&amp;73.LaTeXOptions.Metadata.HelpText" dlg:value="&amp;74.LaTeXOptions.Metadata.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsMetadata"/>
<dlg:text dlg:id="FiguresAndTablesLabel" dlg:tab-index="26" dlg:left="186" dlg:top="50" dlg:width="156" dlg:height="12" dlg:help-text="&amp;75.LaTeXOptions.FiguresAndTablesLabel.HelpText" dlg:value="&amp;76.LaTeXOptions.FiguresAndTablesLabel.Label"/>
<dlg:checkbox dlg:id="OriginalImageSize" dlg:tab-index="27" dlg:left="193" dlg:top="64" dlg:width="149" dlg:height="12" dlg:help-text="&amp;77.LaTeXOptions.OriginalImageSize.HelpText" dlg:value="&amp;78.LaTeXOptions.OriginalImageSize.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="OptimizeSimpleTables" dlg:tab-index="28" dlg:left="193" dlg:top="78" dlg:width="149" dlg:height="12" dlg:help-text="&amp;79.LaTeXOptions.OptimizeSimpleTables.HelpText" dlg:value="&amp;80.LaTeXOptions.OptimizeSimpleTables.Label" dlg:checked="false">
<dlg:checkbox dlg:id="OriginalImageSize" dlg:tab-index="27" dlg:left="193" dlg:top="64" dlg:width="149" dlg:height="12" dlg:help-text="&amp;77.LaTeXOptions.OriginalImageSize.HelpText" dlg:value="&amp;78.LaTeXOptions.OriginalImageSize.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsOriginalImageSize"/>
<dlg:checkbox dlg:id="OptimizeSimpleTables" dlg:tab-index="28" dlg:left="193" dlg:top="78" dlg:width="149" dlg:height="12" dlg:help-text="&amp;79.LaTeXOptions.OptimizeSimpleTables.HelpText" dlg:value="&amp;80.LaTeXOptions.OptimizeSimpleTables.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsOptimizeSimpleTables">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:OptimizeSimpleTablesChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:text dlg:id="SimpleTableLimitLabel" dlg:tab-index="29" dlg:left="203" dlg:top="92" dlg:width="95" dlg:height="12" dlg:help-text="&amp;81.LaTeXOptions.SimpleTableLimitLabel.HelpText" dlg:value="&amp;82.LaTeXOptions.SimpleTableLimitLabel.Label"/>
<dlg:numericfield dlg:id="SimpleTableLimit" dlg:tab-index="30" dlg:left="310" dlg:top="90" dlg:width="32" dlg:height="12" dlg:help-text="&amp;83.LaTeXOptions.SimpleTableLimit.HelpText" dlg:decimal-accuracy="0" dlg:value="40" dlg:spin="true"/>
<dlg:checkbox dlg:id="FloatTables" dlg:tab-index="31" dlg:left="193" dlg:top="106" dlg:width="149" dlg:height="12" dlg:help-text="&amp;84.LaTeXOptions.FloatTables.HelpText" dlg:value="&amp;85.LaTeXOptions.FloatTables.Label" dlg:checked="true">
<dlg:numericfield dlg:id="SimpleTableLimit" dlg:tab-index="30" dlg:left="310" dlg:top="90" dlg:width="32" dlg:height="12" dlg:help-text="&amp;83.LaTeXOptions.SimpleTableLimit.HelpText" dlg:decimal-accuracy="0" dlg:value="40" dlg:spin="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsSimpleTableLimit"/>
<dlg:checkbox dlg:id="FloatTables" dlg:tab-index="31" dlg:left="193" dlg:top="106" dlg:width="149" dlg:height="12" dlg:help-text="&amp;84.LaTeXOptions.FloatTables.HelpText" dlg:value="&amp;85.LaTeXOptions.FloatTables.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsFloatTables">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:FloatTablesChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:checkbox dlg:id="FloatFigures" dlg:tab-index="32" dlg:left="193" dlg:top="120" dlg:width="149" dlg:height="12" dlg:help-text="&amp;86.LaTeXOptions.FloatFigures.HelpText" dlg:value="&amp;87.LaTeXOptions.FloatFigures.Label" dlg:checked="true">
<dlg:checkbox dlg:id="FloatFigures" dlg:tab-index="32" dlg:left="193" dlg:top="120" dlg:width="149" dlg:height="12" dlg:help-text="&amp;86.LaTeXOptions.FloatFigures.HelpText" dlg:value="&amp;87.LaTeXOptions.FloatFigures.Label" dlg:checked="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsFloatFigures">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:FloatFiguresChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:text dlg:id="FloatOptionsLabel" dlg:tab-index="33" dlg:left="193" dlg:top="134" dlg:width="47" dlg:height="12" dlg:help-text="&amp;88.LaTeXOptions.FloatOptionsLabel.HelpText" dlg:value="&amp;89.LaTeXOptions.FloatOptionsLabel.Label"/>
<dlg:menulist dlg:id="FloatOptions" dlg:tab-index="34" dlg:left="246" dlg:top="132" dlg:width="96" dlg:height="12" dlg:help-text="&amp;90.LaTeXOptions.FloatOptions.HelpText" dlg:spin="true">
<dlg:menulist dlg:id="FloatOptions" dlg:tab-index="34" dlg:left="246" dlg:top="132" dlg:width="96" dlg:height="12" dlg:help-text="&amp;90.LaTeXOptions.FloatOptions.HelpText" dlg:spin="true" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsFloatOptions">
<dlg:menupopup>
<dlg:menuitem dlg:value="&amp;132.FloatOptions.StringItemList"/>
<dlg:menuitem dlg:value="&amp;133.FloatOptions.StringItemList"/>
@ -100,11 +100,12 @@
</dlg:menupopup>
</dlg:menulist>
<dlg:text dlg:id="AutoCorrectLabel" dlg:tab-index="35" dlg:left="186" dlg:top="148" dlg:width="156" dlg:height="12" dlg:help-text="&amp;96.LaTeXOptions.AutoCorrectLabel.HelpText" dlg:value="&amp;97.LaTeXOptions.AutoCorrectLabel.Label"/>
<dlg:checkbox dlg:id="IgnoreHardPageBreaks" dlg:tab-index="36" dlg:left="193" dlg:top="162" dlg:width="149" dlg:height="12" dlg:help-text="&amp;98.LaTeXOptions.IgnoreHardPageBreaks.HelpText" dlg:value="&amp;99.LaTeXOptions.IgnoreHardPageBreaks.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="IgnoreHardLineBreaks" dlg:tab-index="37" dlg:left="193" dlg:top="176" dlg:width="149" dlg:height="12" dlg:help-text="&amp;100.LaTeXOptions.IgnoreHardLineBreaks.HelpText" dlg:value="&amp;101.LaTeXOptions.IgnoreHardLineBreaks.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="IgnoreEmptyParagraphs" dlg:tab-index="38" dlg:left="193" dlg:top="190" dlg:width="149" dlg:height="12" dlg:help-text="&amp;102.LaTeXOptions.IgnoreEmptyParagraphs.HelpText" dlg:value="&amp;103.LaTeXOptions.IgnoreEmptyParagraphs.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="IgnoreDoubleSpaces" dlg:tab-index="39" dlg:left="193" dlg:top="204" dlg:width="149" dlg:height="12" dlg:help-text="&amp;104.LaTeXOptions.IgnoreDoubleSpaces.HelpText" dlg:value="&amp;105.LaTeXOptions.IgnoreDoubleSpaces.Label" dlg:checked="false"/>
<dlg:checkbox dlg:id="IgnoreHardPageBreaks" dlg:tab-index="36" dlg:left="193" dlg:top="162" dlg:width="149" dlg:height="12" dlg:help-text="&amp;98.LaTeXOptions.IgnoreHardPageBreaks.HelpText" dlg:value="&amp;99.LaTeXOptions.IgnoreHardPageBreaks.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardPageBreaks"/>
<dlg:checkbox dlg:id="IgnoreHardLineBreaks" dlg:tab-index="37" dlg:left="193" dlg:top="176" dlg:width="149" dlg:height="12" dlg:help-text="&amp;100.LaTeXOptions.IgnoreHardLineBreaks.HelpText" dlg:value="&amp;101.LaTeXOptions.IgnoreHardLineBreaks.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardLineBreaks"/>
<dlg:checkbox dlg:id="IgnoreEmptyParagraphs" dlg:tab-index="38" dlg:left="193" dlg:top="190" dlg:width="149" dlg:height="12" dlg:help-text="&amp;102.LaTeXOptions.IgnoreEmptyParagraphs.HelpText" dlg:value="&amp;103.LaTeXOptions.IgnoreEmptyParagraphs.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsIgnoreEmptyParagraphs"/>
<dlg:checkbox dlg:id="IgnoreDoubleSpaces" dlg:tab-index="39" dlg:left="193" dlg:top="204" dlg:width="149" dlg:height="12" dlg:help-text="&amp;104.LaTeXOptions.IgnoreDoubleSpaces.HelpText" dlg:value="&amp;105.LaTeXOptions.IgnoreDoubleSpaces.Label" dlg:checked="false" dlg:help-url="org.openoffice.da.writer2latex.oxt:OptionsIgnoreDoubleSpaces"/>
<dlg:button dlg:id="ExportButton" dlg:tab-index="40" dlg:left="5" dlg:top="242" dlg:width="60" dlg:height="13" dlg:help-text="&amp;106.LaTeXOptions.ExportButton.HelpText" dlg:value="&amp;107.LaTeXOptions.ExportButton.Label" dlg:button-type="ok"/>
<dlg:button dlg:id="CancelButton" dlg:tab-index="41" dlg:left="75" dlg:top="242" dlg:width="60" dlg:height="13" dlg:help-text="&amp;108.LaTeXOptions.CancelButton.HelpText" dlg:value="&amp;109.LaTeXOptions.CancelButton.Label" dlg:button-type="cancel"/>
<dlg:button dlg:id="HelpButton" dlg:tab-index="42" dlg:left="282" dlg:top="242" dlg:width="60" dlg:height="13" dlg:help-text="" dlg:value="?" dlg:button-type="help" dlg:help-url="org.openoffice.da.writer2latex.oxt:Options"/>
</dlg:bulletinboard>
</dlg:window>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<tree_view version="15-apr-2010">
<help_section application="writer2latex" id="w2l01_writer" title="Writer2LaTeX">
<topic id="writer2latex/org.openoffice.da.writer2latex.oxt/export.xhp">LaTeX Export</topic>
</help_section>
</tree_view>

View file

@ -0,0 +1,359 @@
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
<meta>
<topic id="writer2latex-export" indexer="include">
<title xml-lang="en-US">LaTeX Export</title>
<filename>org.openoffice.da.writer2latex.oxt/export.xhp</filename>
</topic>
</meta>
<body>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:Options" id="bm_options"/>
<paragraph role="heading" level="1" xml-lang="en-US">LaTeX Export</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Exports the current document in LaTeX 2e format. A LaTeX document can be
typeset with the TeX typesetting system.</paragraph>
<section id="howtoget" xml-lang="en-US">
Choose <emph>File - Export - LaTeX 2e</emph>
</section>
<paragraph role="heading" level="2" xml-lang="en-US">General</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsConfig" id="bm_options_config"/>
<paragraph role="heading" level="3" xml-lang="en-US">LaTeX format</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsConfig" visibility="hidden">Select the general format for the LaTeX document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Conceptually, %PRODUCTNAME Writer and LaTeX are quite different.
A LaTeX document is usually based on a certain "document class", that determines the general layout and formatting of the document.
In addition the use of several LaTeX packages may change various aspects of the LaTeX document.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">The result of a conversion into LaTeX will thus depend very much on which
LaTeX packages are used and how much formatting it is desired to preserve.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Writer2LaTeX offers a number of default formats, all based on the standard LaTeX document class "article".
Each of the formats defines the LaTeX packages to use and the handling of formatting.</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Ultra-clean article</emph> will create a very basic LaTeX article,
with almost no formatting preserved.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Clean article</emph> will also create a default LaTeX article,
but does preserve some basic formatting from the %PRODUCTNAME Writer document, such as boldface, color and hyperlinks.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Default</emph> creates a LaTeX article preserving as much formatting
as it is possible without any significant deviations from LaTeX standards.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Print optimized</emph> on the other hand creates a LaTeX article
preserving as much formatting as possible. The result will resemble the %PRODUCTNAME Writer document,
but will look slightly different from a standard LaTeX article (and the LaTeX code will be less readable).</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Screen optimized (pdf)</emph> also creates a LaTeX article preserving
most of the formatting, but optimized for screen viewing (using the package pdfscreen) rather than printing.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Custom</emph> is a user defined format. To configure the custom format,
select <emph>Tools - Options - Writer2LaTeX</emph>.
</paragraph>
</listitem>
</list>
<paragraph role="paragraph" xml-lang="en-US">Expert users can extend the list with further formats using
<emph>configuration packages</emph>. See the documentation on the
<link href="http://writer2latex.sourceforge.net" name="Link to the Writer2LaTeX Website">web site for Writer2LaTeX</link>.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsBackend" id="bm_options_backend"/>
<paragraph role="heading" level="3" xml-lang="en-US">Backend</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsBackend" visibility="hidden">Select the final format of the exported document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">When processing a LaTeX document, the final result is a document in a certain
backend format. The handling of certain aspects of the document, in particular graphics, depends on the backend.
With this option you can select the backend format.</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Generic</emph> will create a LaTeX document that can be processed
with any flavour of LaTeX, usually with a file in DVI format as the result. Graphics is not supported with this backend.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Pdf (pdfTeX)</emph> will create a LaTeX document that is suitable
for processing with pdfLaTeX. Graphics are converted to a format that can be included in pdf files.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Postscript (dvips)</emph> will create a LaTeX document that is
suitable for generating documents in Postscript format, usually by post processing with dvips.
Graphics will be converted to Encapsulated postscript format.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Unspecified</emph> will create a LaTeX document with no
particular backend in mind. All graphics will be exported in the original format,
and it is up to the user to handle them.</paragraph>
</listitem>
</list>
<paragraph role="paragraph" xml-lang="en-US">If you have selected the format Screen optiomized (pdf), you cannot select
the backend, which will always be pdf.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsInputencoding" id="bm_options_inputencoding"/>
<paragraph role="heading" level="3" xml-lang="en-US">Encoding</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsInputencoding" visibility="hidden">Select the character encoding of the LaTeX file</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">A LaTeX document is a text file, which always uses a certain character encoding.
The character encoding is important if the LaTeX file is going to be edited in a text editor:
You should select an encoding that is supported by your text editor. This setting is also important to get optimal support
for international characters: If you for example use pdfTeX, searching in the final pdf document will only work for
characters supported by the selected character encoding.
Currently, Writer2LaTeX supports 8 different encodings which together are suitable for a large number of languages written
with either latin, greek or cyrillic letters.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">The supported character encodings are <emph>US ASCII</emph>,
<emph>West European (ISO 8859-1)</emph>, <emph>East European (ISO 8859-2)</emph>, <emph>Latin/Greek (ISO 8859-7)</emph>,
<emph>Microsoft East European (Cp1250)</emph>, <emph>Microsoft Cyrillic (Cp1251)</emph>, <emph>Russian (koi8-r)</emph>
and <emph>Unicode (UTF8)</emph>.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you have selected XeTeX as your backed, the character encoding is always UTF-8.
XeTeX is needed for asian (CJK) and bidirectional (CTL) scripts.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsMultilingual" id="bm_options_multilingual"/>
<paragraph role="heading" level="3" xml-lang="en-US">Enable multilingual support</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsMultilingual" visibility="hidden">Check this if your document contains text in more than one language</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you check this option, all the language settings in the %PRODUCTNAME Writer
document will be exported to LaTeX. Sometimes the language settings in a %PRODUCTNAME Writer document are not correct,
so if you have a document that is written in one language only you may want to uncheck this option.
This will produce a cleaner LaTeX file because you may avoid a large number of language selections.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsGreekMath" id="bm_options_greekmath"/>
<paragraph role="heading" level="3" xml-lang="en-US">Use greek letters as symbols</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsGreekMath" visibility="hidden">Check this treat greek characters as symbols rather than as text</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Greek letters used in latin text are often used as symbols, such as the
number π or the word γ-radiation. By checking this option, all greek letters used within latin or cyrillic text
will be treated as mathematical symbols, which will produce a slightly better result and also not require that
greek text fonts are available in the LaTeX installation. This option has no effect on greek text (provided the language
is set correctly in the %PRODUCTNAME Writer document).</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsAdditionalSymbols" id="bm_options_additonalsymbols"/>
<paragraph role="heading" level="3" xml-lang="en-US">Support additional symbols</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsAdditionalSymbols" visibility="hidden">Check this to add support for additonal symbols (e.g. phonetic symbols, smileys)</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you select this option (not available if XeTeX is the backend),
LaTeX will load some additional packages containing support for various symbols:
A better looking euro-symbol, phonetic characters, dingbats and various other
symbols and geometric shapes.</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">Bibliography</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsUseBibtex" id="bm_options_usebibtex"/>
<paragraph role="heading" level="3" xml-lang="en-US">Use BibTeX for bibliography</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsUseBibtex" visibility="hidden">Check this to export the bibliography to BibTeX format</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Usually the bibliography in a LaTeX document is generated by the companion
program BibTeX. If you check this option, all the bibliographic references will be exported to BibTeX format for
later processing with the BibTeX program.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsBibtexStyle" id="bm_options_bibtexstyle"/>
<paragraph role="heading" level="3" xml-lang="en-US">BibTeX style</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsBibtexStyle" visibility="hidden">Enter the name of a BibTeX style to format the bibliography</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you use BibTeX, you should also select a BibTeX style to be used when
generating the bibliography. Select one of the predefined styles <emph>plain</emph>, <emph>unsrt</emph>, <emph>alpha</emph> or
<emph>abbrv</emph> or type the name of any BibTeX style which is available
in your LaTeX installation.</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">Files</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsWrapLines" id="bm_options_wraplines"/>
<paragraph role="heading" level="3" xml-lang="en-US">Wrap long lines</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsWrapLines" visibility="hidden">Check this if you want to wrap long lines in the LaTeX file</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Checking this option wraps long lines in the generated LaTeX file.
This enhances the readability if the file is later edited in a text editor. If you use a text editor that wraps
lines automatically, you should uncheck this option.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsWrapLinesAfter" id="bm_options_wraplinesafter"/>
<paragraph role="heading" level="3" xml-lang="en-US">After characters</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsWrapLinesAfter" visibility="hidden">Enter the number of characters after which the lines should be wrapped</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you choose to wrap long lines, they will be wrapped as soon as possible
after this number of characters.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsSplitLinkedSections" id="bm_options_splitlinkedsections"/>
<paragraph role="heading" level="3" xml-lang="en-US">Split document at linked sections</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsSplitLinkedSections" visibility="hidden">Check this to create a separate LaTeX file for each linked section</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Checking this option will create separate LaTeX files for sections in
the %PRODUCTNAME Writer document with linked content. This can be an advantage if the LaTeX document is later edited
in a text editor.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsSplitToplevelSections" id="bm_options_splittoplevelsections"/>
<paragraph role="heading" level="3" xml-lang="en-US">Split document at top level sections</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsSplitToplevelSections" visibility="hidden">Check this to create a separate LaTeX file for all sections that are not nested inside another section</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Checking this option will create separate LaTeX files for all top level
sections in the %PRODUCTNAME Writer document (but not for nested sections).</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsSaveImagesInSubdir" id="bm_options_saveimagesinsubdir"/>
<paragraph role="heading" level="3" xml-lang="en-US">Save images in subdirectory</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsSaveImagesInSubdir" visibility="hidden">Check this to save the documents in a separate subdirectory</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Writer2LaTeX normally saves images associated with the document in the same
directory as the LaTeX document. If the document contains a large number of images it may be more convenient to save
the images in a separate subdirectory. This option will create a subdirectory with the same name as the LaTeX document
to store the images.</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">Special content</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsNotes" id="bm_options_notes"/>
<paragraph role="heading" level="3" xml-lang="en-US">Export notes</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsNotes" visibility="hidden">Select how to export notes in the document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">This option determines how to export notes (also known as annotations)
in the %PRODUCTNAME Writer document.</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Do not export</emph> will ignore the notes.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>As comments</emph> will export the notes as comments in the LaTeX file.
They will not be visible in the final document after processing with LaTeX.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>As marginal notes</emph> will put the notes in the margin of the document.
In this case they will be visible in the final document, but beware that the notes will be lost if the margin
is too narrow.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>As pdf annotations</emph> will export the notes as pdf text
annotations. If the pdf viewer supports it, you will be able to read the notes. Adobe Reader displays text annotations
with a yellow icon, which allows you to open and read the note. If the document is not processed with pdfTeX,
the notes will be converted to marginal notes.</paragraph>
</listitem>
</list>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsMetadata" id="bm_options_metadata"/>
<paragraph role="heading" level="3" xml-lang="en-US">Export document properties (metadata)</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsMetadata" visibility="hidden">Check this if you want to export meta data associated with the document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you check this option, Writer2LaTeX will export the title, author and date
of the document as found under File Properties. Furthermore, if you have chosen pdf as the backend, the title, author,
subject and keywords will be exported to the pdf document and will be viewable if the pdf viewer supports it.
If the option is not checked, only the title will be exported.</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">Figures and tables</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsOriginalImageSize" id="bm_options_originalimagesize"/>
<paragraph role="heading" level="3" xml-lang="en-US">Use original image size</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsOriginalImageSize" visibility="hidden">Select this option to use the original image size (the size specified in the document will be ignored)</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Often images in a %PRODUCTNAME Writer document are scaled up or down
from their original size. Normally the same scaling will be used in the LaTeX document, but if you select this option,
the original (unscaled) image size will be used.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsOptimizeSimpleTables" id="bm_options_optimizesimpletables"/>
<paragraph role="heading" level="3" xml-lang="en-US">Optimize simple tables</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsOptimizeSimpleTables" visibility="hidden">Check this to optimize the width of tables</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Normally Writer2LaTeX will generate tables with the same column widths
as in the original document. For tables with simple content it may be more desirable to create tables which are as
narrow as possible, with only one line of text per cell. Compare the table</paragraph>
<table class="wide">
<tablerow>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
</tablerow>
</table>
<paragraph role="paragraph" xml-lang="en-US">to the optimized table</paragraph>
<table>
<tablerow>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
<tablecell>
<paragraph role="paragraph" xml-lang="en-US">Simple content</paragraph>
</tablecell>
</tablerow>
</table>
<paragraph role="paragraph" xml-lang="en-US">If you check this option, Writer2LaTeX will try to optimize tables.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsSimpleTableLimit" id="bm_options_simpletablelimit"/>
<paragraph role="heading" level="3" xml-lang="en-US">Maximum width in characters</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsSimpleTableLimit" visibility="hidden">Enter the maximum width in characters of tables that should have optimized their width</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you have chosen to optimize simple tables, you have to specify the maximum
width of the table, measured in the number of characters. If you for example set the number to 50, only tables with a total
width of 50 or fewer characters will be optimized.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsFloatTables" id="bm_options_floattables"/>
<paragraph role="heading" level="3" xml-lang="en-US">Float tables</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsFloatTables" visibility="hidden">Check this to allow tables to flow in the document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">In %PRODUCTNAME Writer you can either choose that the rows of a table must
be kept together on one page or that the table may split across page breaks. Keeping a table on one page may be desirable
to increase the readability of the table, but it may also leave large white gaps at the bottom of the page.
In LaTeX this problem is solved with floating tables: A table can automatically move to another position which fixes
the whitespace problem. If you check this option, all tables that are not allowed to break across pages are exported as
floating tables.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsFloatFigures" id="bm_options_floatfigures"/>
<paragraph role="heading" level="3" xml-lang="en-US">Float figures</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsFloatFigures" visibility="hidden">Check this to allow figures to flow in the document</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">A similar option is available for figures (graphics, text boxes).
If you check this option, figures are converted to floating figures which can move in the document to reduce whitespace.
This will not affect figures anchored as character.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsFloatOptions" id="bm_options_floatoptions"/>
<paragraph role="heading" level="3" xml-lang="en-US">Float placement</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsFloatOptions" visibility="hidden">Select placement of floating tables and figures</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">If you choose to let either tables or figures float, use this option to
specify the placement of the floats:</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Top or bottom of page</emph> will place the floats either at
the top or the bottom of a page.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Top of page</emph> will place floats at the top of a page.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Bottom of page</emph> will place floats at the top of a page.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Here or top of page</emph> will place floats at their original position,
if there is room left on the page, and otherwise at the top of a page.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Here or bottom of page</emph> will place floats at their
original position, if there is room left on the page, and otherwise at the bottom of a page.</paragraph>
</listitem>
</list>
<paragraph role="paragraph" xml-lang="en-US">In all cases it might happen that LaTeX creates some special pages which only
contains floats. This will usually be the case if there are many floats compared to the amount of text.</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">AutoCorrect</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardPageBreaks" id="bm_options_ignorehardpagebreaks"/>
<paragraph role="heading" level="3" xml-lang="en-US">Ignore hard page breaks</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardPageBreaks" visibility="hidden">Check this if you don't want to export manual page breaks</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Hard (or manual) page breaks are often used to optimize page breaks in the
final editing of a document. In this case you will probably not want to export these page breaks, as LaTeX creates page
breaks that are quite different from the page breaks in %PRODUCTNAME Writer. If you select this option, hard page breaks
will be ignored when exporting the document.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardLineBreaks" id="bm_options_ignorehardlinebreaks"/>
<paragraph role="heading" level="3" xml-lang="en-US">Ignore hard line breaks</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsIgnoreHardLineBreaks" visibility="hidden">Check this if you don't want to export manual line breaks</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">For similar reasons, you can select this option to ignore hard (manual) line
breaks during export.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsIgnoreEmptyParagraphs" id="bm_options_ignoreemptyparagraphs"/>
<paragraph role="heading" level="3" xml-lang="en-US">Ignore empty paragraphs</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsIgnoreEmptyParagraphs" visibility="hidden">Check this if you don't want to export empty paragraphs</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Empty paragraphs are sometimes used a simple means to create vertical spacing
in %PRODUCTNAME Writer. In a well-structured document, an empty paragraph is probably a mistake. Hence you can select this
option to ignore empty paragraphs in the document in the export. If you do not select the option, an empty paragraph is
exported as vertical space.</paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer2latex.oxt:OptionsIgnoreDoubleSpaces" id="bm_options_ignoredoublespaces"/>
<paragraph role="heading" level="3" xml-lang="en-US">Ignore double spaces</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer2latex.oxt:OptionsIgnoreDoubleSpaces" visibility="hidden">Check this if you don't want to export two consecutive space characters</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">For similar reasons you can choose to ignore two or more spaces in a row using
this option.</paragraph>
</body>
</helpdocument>

View file

@ -11,6 +11,7 @@
<prop oor:name="LockedOptions" oor:type="xs:string" />
<prop oor:name="ConfigURL" oor:type="xs:string" />
<prop oor:name="TargetTemplateURL" oor:type="xs:string" />
<prop oor:name="StyleSheetURL" oor:type="xs:string" />
</group>
<group oor:name="Template">
<prop oor:name="TemplateName" oor:type="xs:string" />

View file

@ -4,13 +4,13 @@
<dlg:bulletinboard>
<dlg:text dlg:id="IncludedCustomStylesheetLabel" dlg:tab-index="0" dlg:left="5" dlg:top="8" dlg:width="245" dlg:height="12" dlg:value="Custom style sheets"/>
<dlg:checkbox dlg:id="LinkCustomStylesheet" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="240" dlg:height="12" dlg:value="Insert link to custom style sheet" dlg:checked="false">
<dlg:checkbox dlg:id="LinkCustomStylesheet" dlg:tab-index="1" dlg:left="10" dlg:top="22" dlg:width="240" dlg:height="12" dlg:value="Insert link to custom style sheet (XHTML export)" dlg:checked="false">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:LinkCustomStylesheetChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:text dlg:id="CustomStylesheetURLLabel" dlg:tab-index="2" dlg:left="19" dlg:top="36" dlg:width="55" dlg:height="12" dlg:value="URL"/>
<dlg:textfield dlg:id="CustomStylesheetURL" dlg:tab-index="3" dlg:left="80" dlg:top="34" dlg:width="170" dlg:height="12"/>
<dlg:checkbox dlg:id="UseCustomStylesheet" dlg:tab-index="4" dlg:left="10" dlg:top="50" dlg:width="240" dlg:height="12" dlg:value="Include custom style sheet" dlg:checked="false">
<dlg:checkbox dlg:id="UseCustomStylesheet" dlg:tab-index="4" dlg:left="10" dlg:top="50" dlg:width="240" dlg:height="12" dlg:value="Include custom style sheet (EPUB export)" dlg:checked="false">
<script:event script:event-name="on-itemstatechange" script:macro-name="vnd.sun.star.UNO:UseCustomStylesheetChange" script:language="UNO"/>
</dlg:checkbox>
<dlg:textfield dlg:id="CustomStylesheet" dlg:tab-index="5" dlg:left="18" dlg:top="64" dlg:width="232" dlg:height="84" dlg:hscroll="true" dlg:vscroll="true" dlg:multiline="true"/>

View file

@ -25,6 +25,10 @@
<prop oor:name="TargetTemplateURL" oor:type="xs:string">
<value>%origin%/config/sampletemplate.xhtml</value>
</prop>
<!-- This url points to the style sheet to include (intended for EPUB export) -->
<prop oor:name="StyleSheetURL" oor:type="xs:string">
<value></value>
</prop>
</node>
</node>
<node oor:name="Templates">