W4L Help content and a bugfix

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@47 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2010-02-26 11:03:31 +00:00
parent 5a8dcceea2
commit ccc8741301
11 changed files with 456 additions and 133 deletions

View file

@ -2,6 +2,10 @@ Changelog for Writer2LaTeX version 1.0 -> 1.2
---------- version 1.1.1 ----------
[w2l] Bugfix: Avoid null pointer exception on empty metadata (date)
[w2x] Bugfix: Avoid null pointer exception on empty metadata (subject, keywords)
[w2x] Adapted to work with MathML without namespace (fix for change in OOo 3.2)
[w2l] Adapted to work with MathML without namespace (fix for change in OOo 3.2)

View file

@ -20,7 +20,7 @@
*
* All Rights Reserved.
*
* Version 1.2 (2010-02-19)
* Version 1.2 (2010-02-26)
*
*/
@ -33,7 +33,7 @@ public class ConverterFactory {
// Version information
private static final String VERSION = "1.1.1";
private static final String DATE = "2010-02-19";
private static final String DATE = "2010-02-26";
/** Return version information
* @return the Writer2LaTeX version in the form

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2009 by Henrik Just
* Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2009-09-24)
* Version 1.2 (2010-02-26)
*
*/
@ -235,10 +235,12 @@ public final class ConverterPalette extends ConverterBase {
createMeta("author",metaData.getCreator(),declarations);
// According to the spec, the date has the format YYYY-MM-DDThh:mm:ss
String sDate = metaData.getDate();
if (sDate.length()==19 && sDate.charAt(10)=='T') {
sDate = sDate.substring(0,10);
if (sDate!=null) {
if (sDate.length()==19 && sDate.charAt(10)=='T') {
sDate = sDate.substring(0,10);
}
createMeta("date",sDate,declarations);
}
createMeta("date",sDate,declarations);
}
// Create options for documentclass

View file

@ -16,11 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
* Copyright: 2002-2009 by Henrik Just
* Copyright: 2002-2010 by Henrik Just
*
* All Rights Reserved.
*
* Version 1.2 (2009-09-05)
* Version 1.2 (2010-02-26)
*
*/
@ -504,11 +504,14 @@ public class Converter extends ConverterBase {
// Insert the actual meta data
createMeta("DC.title",metaData.getTitle());
// DC.subject actually contains subject+keywords, so we merge them
String sDCSubject = metaData.getSubject();
if (metaData.getSubject().length()>0 && metaData.getKeywords().length()>0) {
sDCSubject+=", ";
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();
}
sDCSubject+=metaData.getKeywords();
createMeta("DC.subject",sDCSubject);
createMeta("DC.description",metaData.getDescription());
createMeta("DC.creator",metaData.getCreator());

View file

@ -6,5 +6,6 @@
<topic id="writer4latex/org.openoffice.da.writer4latex.oxt/menu.xhp">Menu reference</topic>
<topic id="writer4latex/org.openoffice.da.writer4latex.oxt/guidelines.xhp">Guidelines</topic>
<topic id="writer4latex/org.openoffice.da.writer4latex.oxt/templates.xhp">Using the templates</topic>
<topic id="writer4latex/org.openoffice.da.writer4latex.oxt/import.xhp">Importing TeX files</topic>
</help_section>
</tree_view>

View file

@ -11,21 +11,11 @@
<paragraph role="heading" level="1" xml-lang="en-US">Configuration</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Before you can use Writer4LaTeX you must configure it to use your LaTeX
distribution as well as viewers for the different output formats.</paragraph>
<table>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">To access this function...</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Select <emph>Tools - Extension Manager - Writer4LaTeX</emph>
and click <emph>Configure</emph></paragraph>
<paragraph role="tablecontent" xml-lang="en-US">Select <emph>Tools - Options - %PRODUCTNAME Writer - Writer4LaTeX</emph>
</paragraph>
</tablecell>
</tablerow>
</table>
<section id="howtoget" xml-lang="en-US">
Select <emph>Tools - Extension Manager - Writer4LaTeX</emph>
and click <emph>Configure</emph><br/>
Select <emph>Tools - Options - %PRODUCTNAME Writer - Writer4LaTeX</emph>
</section>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer4latex.oxt:ConfigurationAutoButton" id="bm_configurationautobutton"/>
<paragraph role="heading" level="2" xml-lang="en-US">Automatic Configuration</paragraph>
@ -75,7 +65,7 @@
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer4latex.oxt:ConfigurationOptions" id="bm_configurationoptions"/>
<paragraph role="heading" level="2" xml-lang="en-US">Options</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Fill out any additional options here. Often you will only need the file name,
which is denoted %s.</paragraph>
which is denoted <emph>%s</emph>.</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex.oxt:ConfigurationOptions" visibility="hidden">Fill out any additional options here, using %s to represent the file name</ahelp></paragraph>
</body>
</helpdocument>

View file

@ -8,5 +8,41 @@
</meta>
<body>
<paragraph role="heading" level="1" xml-lang="en-US">Guidelines</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Not every feature in %PRODUCTNAME Writer is supported by LaTeX. To avoid unexpected
results follow these guidelines.</paragraph>
<list type="unordered">
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Page styles</emph>: %PRODUCTNAME Writer offers a sofisticated
page style scheme, where every page style can define another style to be used for the next page.
You can thus have something like Style A → Style B → Style C.
In LaTeX this is only possible in the first step of a page sequence:
The example above will produce Style A → Style B → Style B in LaTeX.
You should beware of this when you design your page styles. Note that explicit change of page style with
<emph>Insert - Manual break</emph> is not affected by this limitation.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">In LaTeX the same page geometry is used for all pages. The dimensions are
taken from the first page of your document.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Do not create headers and footers with more than one line of text,
these will not be exported correctly to LaTeX.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Background color</emph>: Background color is currently not supported
except in table cells. You should avoid using background color elsewhere.</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Graphics</emph>: Anchor graphics to paragraph or to character if you
want a floating graphic. If you want the graphic to be a part of the text flow, anchor it to character. Do not anchor
graphics to page as this will make the graphics turn up the wrong place in your document.
You are advised not to wrap text around graphics as this is not exported to LaTeX anyway.</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Also, do not use drawing objects inserted directly in the text (using the
Drawing toolbar). These will not be converted to LaTeX.
If you need to insert a drawing, insert an embedded Draw object (<emph>Insert - Object</emph>).</paragraph>
</listitem>
<listitem>
<paragraph role="paragraph" xml-lang="en-US"><emph>Tables</emph>: Avoid using cells spanning several rows, as this
is currently not supported. Cells spanning several columns are fully supported.</paragraph>
</listitem>
</list>
<paragraph role="paragraph" xml-lang="en-US">In general you should be aware that not all formatting is exported. The export of formatting
depends on the selected LaTeX format.</paragraph>
</body>
</helpdocument>

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<helpdocument version="1.0">
<meta>
<topic id="writer4latex-import" indexer="include">
<title xml-lang="en-US">TeX import</title>
<filename>org.openoffice.da.writer4latex.oxt/import.xhp</filename>
</topic>
</meta>
<body>
<paragraph role="heading" level="1" xml-lang="en-US">Importing TeX files</paragraph>
<paragraph role="paragraph" xml-lang="en-US">Coming soon to an extension near you!</paragraph>
</body>
</helpdocument>

View file

@ -7,7 +7,7 @@
</topic>
</meta>
<body>
<paragraph role="heading" level="1" xml-lang="en-US">About Writer4LaTeX</paragraph>
<paragraph role="heading" level="1" xml-lang="en-US">Introduction to Writer4LaTeX</paragraph>
<paragraph role="paragraph" xml-lang="en-US">The purpose of the Writer4LaTeX extension is to turn Writer into a frontend for LaTeX.
By installing Writer4LaTeX you will thus be available to author well-structured LaTeX documents using (almost) the full power of
@ -41,9 +41,13 @@
</list>
<paragraph role="heading" level="2" xml-lang="en-US">LaTeX import</paragraph>
<paragraph role="paragraph" xml-lang="en-US">You can import existing LaTeX documents into Writer.
This feature uses Eitan M. Gurari's excellent TeX4ht system. Note however, that this doesn't mean that roundtrip
editing %PRODUCTNAME Writer ↔ LaTeX is possible. The intended use of the import feature is to be able to work on documents
<paragraph role="paragraph" xml-lang="en-US">You can
<link href="org.openoffice.da.writer4latex.oxt/import.xhp" name="Import TeX files">import</link>
existing LaTeX documents into Writer.
This feature uses Eitan M. Gurari's excellent
<link href="http://www.cse.ohio-state.edu/~gurari/TeX4ht/" name="Link to the TeX4ht Website">TeX4ht</link>
system. Note however, that this feature doesn't make roundtrip
editing %PRODUCTNAME Writer ↔ LaTeX is possible. The intended use of the import feature to make it possible to work on documents
that were orginally authored in LaTeX.
</paragraph>

View file

@ -13,17 +13,20 @@
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer4latex:ProcessDocument" id="bm_processdocument"/>
<paragraph role="heading" level="2" xml-lang="en-US">Run LaTeX...</paragraph>
<paragraph role="paragraph" xml-lang="en-US">...</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ProcessDocument" visibility="hidden">Run LaTeX</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Convert the document to LaTeX and display the result in an external viewer.
You can configure the export in the dialog.</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ProcessDocument" visibility="hidden">Run LaTeX and display the result</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer4latex:ProcessDirectly" id="bm_processdirectly"/>
<paragraph role="heading" level="2" xml-lang="en-US">Run LaTeX directly</paragraph>
<paragraph role="paragraph" xml-lang="en-US">...</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ProcessDirectly" visibility="hidden">Run LaTeX directly</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">Convert the document to LaTeX and display the result in an external viewer.
This command does not display the configuration dialog, but reuses the last settings.</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ProcessDirectly" visibility="hidden">Run LaTeX directly and display the result</ahelp></paragraph>
<bookmark xml-lang="en-US" branch="hid/org.openoffice.da.writer4latex:ViewLog" id="bm_viewlog"/>
<paragraph role="heading" level="2" xml-lang="en-US">View Log files</paragraph>
<paragraph role="paragraph" xml-lang="en-US">...</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ViewLog" visibility="hidden">View log files</ahelp></paragraph>
<paragraph role="paragraph" xml-lang="en-US">In case of any problems in the conversion process, you can view the log files created by
LaTeX, MakeIndex and BibTeX here</paragraph>
<paragraph role="paragraph" xml-lang="en-US"><ahelp hid="org.openoffice.da.writer4latex:ViewLog" visibility="hidden">View log files created by LaTeX, MakeIndex and BibTeX</ahelp></paragraph>
</body>
</helpdocument>

View file

@ -9,11 +9,16 @@
<body>
<paragraph role="heading" level="1" xml-lang="en-US">Using the templates</paragraph>
<paragraph role="heading" level="2" xml-lang="en-US">The article template</paragraph>
<section id="howtoget" xml-lang="en-US">
Choose <emph>File - New - Templates and Documents</emph>
</section>
<paragraph role="paragraph" xml-lang="en-US">This template contains a number of styles that corresponds to LaTeX code.
If you use these styles and makes sure to use the configuration <emph>W4L: Article</emph> when you convert your document
(this is selected automatically) with Writer2LaTeX, you will get a result that resembles a handwritten LaTeX file.
Note that hard formatting and any other styles will be ignored. The available styles are summarized in the following table.</paragraph>
Note that hard formatting and any other styles will be ignored. The available styles are summarized in the following tables.
The use of italics in these tables indicates styles that are predefined in %PRODUCTNAME Writer.
The names of these styles will be localized if you use a non-english version of %PRODUCTNAME.</paragraph>
<paragraph role="heading" level="3">Paragraph styles</paragraph>
<table>
<tablerow>
<tablecell>
@ -33,102 +38,364 @@
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US"></paragraph>
<paragraph role="tablecontent" xml-lang="en-US">author</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US"></paragraph>
<paragraph role="tablecontent" xml-lang="en-US">\author{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">date</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\date{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">abstract title</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">renews \abstractname</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">abstract</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">abstract environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">part</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\part{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Heading 2</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\section{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Heading 3</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\subsection{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Heading 4</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\subsubsection{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Heading 5</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\paragraph{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Heading 6</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\subparagraph{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">flushleft</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">flushleft environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">flushright</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">flushright environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">center</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">center environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">verse</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">verse environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">quote</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">quote environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">quotation</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">quotation environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Preformatted text</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">verbatim environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">theorem</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">theorem environment</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">itemize</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">itemize list</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">enumerate</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">enurerate list</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">List Heading</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">description list (item label)</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">List Contents</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">description list (item text)</paragraph>
</tablecell>
</tablerow>
</table>
<!--author
\author{...}
date
\date{...}
abstract title
renews \abstractname
abstract
abstract environment
part
\part{...}
Heading 2
\section{...}
Heading 3
\subsection{...}
Heading 4
\subsubsection{...}
Heading 5
\paragraph{...}
Heading 6
\subparagraph{...}
flushleft
flushleft environment
flushright
flushright environment
center
center environment
verse
verse environment
quote
quote environment
quotation
quotation environment
Preformatted text
verbatim environment3
theorem
theorem environment
itemize
itemize list
enumerate
enurerate list
List Heading
description list (item label)
List Contents
description list (item text)
verb
\verb|...|
Emphasis
\emph{...}
Strong Emphasis
\textbf{...}
textrm
\textrm{...}
textsf
\textsf{...}
texttt
\texttt{...}
textup
\textup{...}
textsl
\textsl{...}
textit
\textit{...}
textsc
\textsc{...}
textmd
\textmd{...}
textbf
\textbf{...}
tiny
{\tiny ...}
scriptsize
{\sciptsize ...}
footnotesize
{\footnotesize ...}
small
{\small ...}
normalsize
{\normalsize ...}
large
{\large ...}
Large
{\Large ...}
LARGE
{\LARGE ...}
huge
{\huge ...}
Huge
{\Huge ...}-->
<paragraph role="paragraph">Note that also \maketitle is added at the end of a sequence of Title, author and date.</paragraph>
<paragraph role="paragraph">For the verbatim environment, only characters available in the input encoding are accepted.
Other characters are converted to question marks and other content is discarded, eg. footnotes.</paragraph>
<paragraph role="heading" level="3">Text styles</paragraph>
<table>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">verb</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\verb|...|</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Emphasis</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\emph{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Strong Emphasis</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textbf{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textrm</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textrm{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textsf</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textsf{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">texttt</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\texttt{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textup</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textup{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textsl</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textsl{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textit</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textit{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textsc</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textsc{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textmd</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textmd{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">textbf</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">\textbf{...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">tiny</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\tiny ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">scriptsize</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\sciptsize ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">footnotesize</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\footnotesize ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">small</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\small ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">normalsize</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\normalsize ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">large</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\large ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Large</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\Large ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">LARGE</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\LARGE ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">huge</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\huge ...}</paragraph>
</tablecell>
</tablerow>
<tablerow>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">Huge</paragraph>
</tablecell>
<tablecell>
<paragraph role="tablecontent" xml-lang="en-US">{\Huge ...}</paragraph>
</tablecell>
</tablerow>
</table>
<paragraph role="paragraph">For the \verb command, only characters available in the input encoding are accepted.
Other characters are converted to question marks and other content is discarded, eg. footnotes.</paragraph>
</body>
</helpdocument>