1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Utilities for Latex conversion.
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
33 * Variables accessible from clients
37 TexChunk
* DocumentTitle
= NULL
;
38 TexChunk
* DocumentAuthor
= NULL
;
39 TexChunk
* DocumentDate
= NULL
;
41 // Header/footers/pagestyle
42 TexChunk
* LeftHeaderEven
= NULL
;
43 TexChunk
* LeftFooterEven
= NULL
;
44 TexChunk
* CentreHeaderEven
= NULL
;
45 TexChunk
* CentreFooterEven
= NULL
;
46 TexChunk
* RightHeaderEven
= NULL
;
47 TexChunk
* RightFooterEven
= NULL
;
48 TexChunk
* LeftHeaderOdd
= NULL
;
49 TexChunk
* LeftFooterOdd
= NULL
;
50 TexChunk
* CentreHeaderOdd
= NULL
;
51 TexChunk
* CentreFooterOdd
= NULL
;
52 TexChunk
* RightHeaderOdd
= NULL
;
53 TexChunk
* RightFooterOdd
= NULL
;
54 char * PageStyle
= copystring("plain");
56 int DocumentStyle
= LATEX_REPORT
;
57 int MinorDocumentStyle
= 0;
58 wxPathList TexPathList
;
59 char * BibliographyStyleString
= copystring("plain");
60 char * DocumentStyleString
= copystring("report");
61 char * MinorDocumentStyleString
= NULL
;
75 // All of these tokens MUST be found on a line by themselves (no other
76 // text) and must start at the first character of the line, or tex2rtf
77 // will fail to process them correctly (a limitation of tex2rtf, not TeX)
78 static const wxString syntaxTokens
[] =
79 { "\\begin{verbatim}",
80 "\\begin{toocomplex}",
96 * USER-ADJUSTABLE SETTINGS
100 // Section font sizes
101 int chapterFont
= 12; // LARGEFont3;
102 int sectionFont
= 12; // LargeFont2;
103 int subsectionFont
= 12; // largeFont1;
104 int titleFont
= LARGEFont3
;
105 int authorFont
= LargeFont2
;
106 int mirrorMargins
= TRUE
;
107 bool winHelp
= FALSE
; // Output in Windows Help format if TRUE, linear otherwise
108 bool isInteractive
= FALSE
;
109 bool runTwice
= FALSE
;
110 int convertMode
= TEX_RTF
;
111 bool checkCurleyBraces
= FALSE
;
112 bool checkSyntax
= FALSE
;
113 bool headerRule
= FALSE
;
114 bool footerRule
= FALSE
;
115 bool compatibilityMode
= FALSE
; // If TRUE, maximum Latex compatibility
116 // (Quality of RTF generation deteriorate)
117 bool generateHPJ
; // Generate WinHelp Help Project file
118 char *winHelpTitle
= NULL
; // Windows Help title
119 int defaultTableColumnWidth
= 2000;
121 int labelIndentTab
= 18; // From left indent to item label (points)
122 int itemIndentTab
= 40; // From left indent to item (points)
124 bool useUpButton
= TRUE
;
125 int htmlBrowseButtons
= HTML_BUTTONS_TEXT
;
127 bool truncateFilenames
= FALSE
; // Truncate for DOS
128 int winHelpVersion
= 3; // WinHelp Version (3 for Windows 3.1, 4 for Win95)
129 bool winHelpContents
= FALSE
; // Generate .cnt file for WinHelp 4
130 bool htmlIndex
= FALSE
; // Generate .htx file for HTML
131 bool htmlFrameContents
= FALSE
; // Use frames for HTML contents page
132 char *htmlStylesheet
= NULL
; // Use this CSS stylesheet for HTML pages
133 bool useHeadingStyles
= TRUE
; // Insert \s1, s2 etc.
134 bool useWord
= TRUE
; // Insert proper Word table of contents, etc etc
135 int contentsDepth
= 4; // Depth of Word table of contents
136 bool indexSubsections
= TRUE
; // Index subsections in linear RTF
137 // Linear RTF method of including bitmaps. Can be "includepicture", "hex"
138 char *bitmapMethod
= copystring("includepicture");
139 bool upperCaseNames
= FALSE
;
140 // HTML background and text colours
141 char *backgroundImageString
= NULL
;
142 char *backgroundColourString
= copystring("255;255;255");
143 char *textColourString
= NULL
;
144 char *linkColourString
= NULL
;
145 char *followedLinkColourString
= NULL
;
146 bool combineSubSections
= FALSE
;
147 bool htmlWorkshopFiles
= FALSE
;
148 bool ignoreBadRefs
= FALSE
;
149 char *htmlFaceName
= NULL
;
151 extern int passNumber
;
153 extern wxHashTable TexReferences
;
156 * International support
159 // Names to help with internationalisation
160 char *ContentsNameString
= copystring("Contents");
161 char *AbstractNameString
= copystring("Abstract");
162 char *GlossaryNameString
= copystring("Glossary");
163 char *ReferencesNameString
= copystring("References");
164 char *FiguresNameString
= copystring("List of Figures");
165 char *TablesNameString
= copystring("List of Tables");
166 char *FigureNameString
= copystring("Figure");
167 char *TableNameString
= copystring("Table");
168 char *IndexNameString
= copystring("Index");
169 char *ChapterNameString
= copystring("chapter");
170 char *SectionNameString
= copystring("section");
171 char *SubsectionNameString
= copystring("subsection");
172 char *SubsubsectionNameString
= copystring("subsubsection");
173 char *UpNameString
= copystring("Up");
182 int subsectionNo
= 0;
183 int subsubsectionNo
= 0;
192 FILE *CurrentOutput1
= NULL
;
193 FILE *CurrentOutput2
= NULL
;
195 unsigned long LineNumbers
[15];
197 int CurrentInputIndex
= 0;
199 char *TexFileRoot
= NULL
;
200 char *TexBibName
= NULL
; // Bibliography output file name
201 char *TexTmpBibName
= NULL
; // Temporary bibliography output file name
202 bool isSync
= FALSE
; // If TRUE, should not yield to other processes.
203 bool stopRunning
= FALSE
; // If TRUE, should abort.
205 static int currentColumn
= 0;
206 char *currentArgData
= NULL
;
207 bool haveArgData
= FALSE
; // If TRUE, we're simulating the data.
208 TexChunk
*currentArgument
= NULL
;
209 TexChunk
*nextChunk
= NULL
;
210 bool isArgOptional
= FALSE
;
213 TexChunk
*TopLevel
= NULL
;
214 // wxList MacroDefs(wxKEY_STRING);
215 wxHashTable
MacroDefs(wxKEY_STRING
);
216 wxStringList IgnorableInputFiles
; // Ignorable \input files, e.g. psbox.tex
217 char *BigBuffer
= NULL
; // For reading in large chunks of text
218 TexMacroDef
*SoloBlockDef
= NULL
;
219 TexMacroDef
*VerbatimMacroDef
= NULL
;
221 #define IncrementLineNumber() LineNumbers[CurrentInputIndex] ++
224 TexRef::TexRef(const char *label
, const char *file
,
225 const char *section
, const char *sectionN
)
227 refLabel
= copystring(label
);
228 refFile
= file
? copystring(file
) : (char*) NULL
;
229 sectionNumber
= section
? copystring(section
) : copystring("??");
230 sectionName
= sectionN
? copystring(sectionN
) : copystring("??");
233 TexRef::~TexRef(void)
235 delete [] refLabel
; refLabel
= NULL
;
236 delete [] refFile
; refFile
= NULL
;
237 delete [] sectionNumber
; sectionNumber
= NULL
;
238 delete [] sectionName
; sectionName
= NULL
;
242 CustomMacro::~CustomMacro()
250 void TexOutput(const char *s
, bool ordinaryText
)
254 // Update current column, but only if we're guaranteed to
255 // be ordinary text (not mark-up stuff)
258 for (i
= 0; i
< len
; i
++)
260 if (s
[i
] == 13 || s
[i
] == 10)
267 fprintf(CurrentOutput1
, "%s", s
);
269 fprintf(CurrentOutput2
, "%s", s
);
273 * Try to find a Latex macro, in one of the following forms:
274 * (1) \begin{} ... \end{}
275 * (2) \macroname{arg1}...{argn}
279 void ForbidWarning(TexMacroDef
*def
)
282 switch (def
->forbidden
)
286 informBuf
.Printf("Warning: it is recommended that command %s is not used.", def
->name
);
287 OnInform((char *)informBuf
.c_str());
290 case FORBID_ABSOLUTELY
:
292 informBuf
.Printf("Error: command %s cannot be used and will lead to errors.", def
->name
);
293 OnInform((char *)informBuf
.c_str());
301 TexMacroDef
*MatchMacro(char *buffer
, int *pos
, char **env
, bool *parseToBrace
)
303 *parseToBrace
= TRUE
;
305 TexMacroDef
*def
= NULL
;
308 // First, try to find begin{thing}
309 if (strncmp(buffer
+i
, "begin{", 6) == 0)
314 while ((isalpha(buffer
[j
]) || buffer
[j
] == '*') && ((j
- i
) < 39))
316 macroBuf
[j
-i
] = buffer
[j
];
320 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
324 *pos
= j
+ 1; // BUGBUG Should this be + 1???
332 // Failed, so try to find macro from definition list
335 // First try getting a one-character macro, but ONLY
336 // if these TWO characters are not both alphabetical (could
337 // be a longer macro)
338 if (!(isalpha(buffer
[i
]) && isalpha(buffer
[i
+1])))
340 macroBuf
[0] = buffer
[i
];
343 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
349 while ((isalpha(buffer
[j
]) || buffer
[j
] == '*') && ((j
- i
) < 39))
351 macroBuf
[j
-i
] = buffer
[j
];
355 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
362 // We want to check whether this is a space-consuming macro
364 // No brace, e.g. \input thing.tex instead of \input{thing};
365 // or a numeric argument, such as \parindent0pt
366 if ((def
->no_args
> 0) && ((buffer
[i
] == 32) || (buffer
[i
] == '=') || (isdigit(buffer
[i
]))))
368 if ((buffer
[i
] == 32) || (buffer
[i
] == '='))
371 *parseToBrace
= FALSE
;
380 void EatWhiteSpace(char *buffer
, int *pos
)
382 int len
= strlen(buffer
);
384 bool keepGoing
= TRUE
;
385 bool moreLines
= TRUE
;
386 while ((j
< len
) && keepGoing
&&
387 (buffer
[j
] == 10 || buffer
[j
] == 13 || buffer
[j
] == ' ' || buffer
[j
] == 9))
394 moreLines
= read_a_line(buffer
);
395 len
= strlen(buffer
);
405 bool FindEndEnvironment(char *buffer
, int *pos
, char *env
)
409 // Try to find end{thing}
410 if ((strncmp(buffer
+i
, "end{", 4) == 0) &&
411 (strncmp(buffer
+i
+4, env
, strlen(env
)) == 0))
413 *pos
= i
+ 5 + strlen(env
);
419 bool readingVerbatim
= FALSE
;
420 bool readInVerbatim
= FALSE
; // Within a verbatim, but not nec. verbatiminput
422 // Switched this off because e.g. \verb${$ causes it to fail. There is no
423 // detection of \verb yet.
424 // #define CHECK_BRACES 1
426 unsigned long leftCurley
= 0;
427 unsigned long rightCurley
= 0;
428 static wxString currentFileName
= "";
430 bool read_a_line(char *buf
)
432 if (CurrentInputIndex
< 0)
439 unsigned long bufIndex
= 0;
442 while (ch
!= EOF
&& ch
!= 10)
444 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
447 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
448 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(), MAX_LINE_BUFFER_SIZE
);
449 OnError((char *)errBuf
.c_str());
453 if (((bufIndex
== 14) && (strncmp(buf
, "\\end{verbatim}", 14) == 0)) ||
454 ((bufIndex
== 16) && (strncmp(buf
, "\\end{toocomplex}", 16) == 0)))
455 readInVerbatim
= FALSE
;
457 ch
= getc(Inputs
[CurrentInputIndex
]);
459 if (checkCurleyBraces
)
461 if (ch
== '{' && !readInVerbatim
)
463 if (ch
== '}' && !readInVerbatim
)
466 if (rightCurley
> leftCurley
)
469 errBuf
.Printf("An extra right Curley brace ('}') was detected at line %lu inside file %s", LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
470 OnError((char *)errBuf
.c_str());
472 // Reduce the count of right Curley braces, so the mismatched count
473 // isn't reported on every line that has a '}' after the first mismatch
481 // Check for 2 consecutive newlines and replace with \par
482 if (ch
== 10 && !readInVerbatim
)
484 int ch1
= getc(Inputs
[CurrentInputIndex
]);
485 if ((ch1
== 10) || (ch1
== 13))
487 // Eliminate newline (10) following DOS linefeed
489 ch1
= getc(Inputs
[CurrentInputIndex
]);
491 IncrementLineNumber();
492 // strcat(buf, "\\par\n");
494 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
497 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
498 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
499 OnError((char *)errBuf
.c_str());
502 strcat(buf
, "\\par");
508 ungetc(ch1
, Inputs
[CurrentInputIndex
]);
509 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
512 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
513 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
514 OnError((char *)errBuf
.c_str());
525 // Convert embedded characters to RTF equivalents
534 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
537 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
538 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
539 OnError((char *)errBuf
.c_str());
542 buf
[bufIndex
++]='\\';
547 case 0xf6:buf
[bufIndex
++]='o';break; // ö
548 case 0xe4:buf
[bufIndex
++]='a';break; // ä
549 case 0xfc:buf
[bufIndex
++]='u';break; // ü
550 case 0xd6:buf
[bufIndex
++]='O';break; // Ö
551 case 0xc4:buf
[bufIndex
++]='A';break; // Ä
552 case 0xdc:buf
[bufIndex
++]='U';break; // Ü
557 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
560 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
561 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
562 OnError((char *)errBuf
.c_str());
565 buf
[bufIndex
++]='\\';
568 buf
[bufIndex
++]='\\';
572 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
575 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
576 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
577 OnError((char *)errBuf
.c_str());
580 // If the current character read in is a '_', we need to check
581 // whether there should be a '\' before it or not
584 buf
[bufIndex
++] = ch
;
592 // There should NOT be a '\' before the '_'
593 if ((bufIndex
> 0 && (buf
[bufIndex
-1] == '\\')) && (buf
[0] != '%'))
596 errBuf
.Printf("An underscore ('_') was detected at line %lu inside file %s that should NOT have a '\\' before it.",LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
597 OnError((char *)errBuf
.c_str());
602 // There should be a '\' before the '_'
606 errBuf
.Printf("An underscore ('_') was detected at line %lu inside file %s that may need a '\\' before it.",LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
607 OnError((char *)errBuf
.c_str());
609 else if ((buf
[bufIndex
-1] != '\\') && (buf
[0] != '%') && // If it is a comment line, then no warnings
610 (strncmp(buf
, "\\input", 6))) // do not report filenames that have underscores in them
613 errBuf
.Printf("An underscore ('_') was detected at line %lu inside file %s that may need a '\\' before it.",LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
614 OnError((char *)errBuf
.c_str());
618 buf
[bufIndex
++] = ch
;
626 fclose(Inputs
[CurrentInputIndex
]);
627 Inputs
[CurrentInputIndex
] = NULL
;
628 if (CurrentInputIndex
> 0)
629 ch
= ' '; // No real end of file
630 CurrentInputIndex
--;
632 if (checkCurleyBraces
)
634 if (leftCurley
!= rightCurley
)
637 errBuf
.Printf("Curley braces do not match inside file %s\n%lu opens, %lu closes", (const char*) currentFileName
.c_str(),leftCurley
,rightCurley
);
638 OnError((char *)errBuf
.c_str());
646 readingVerbatim
= FALSE
;
647 readInVerbatim
= FALSE
;
648 strcat(buf
, "\\end{verbatim}\n");
653 IncrementLineNumber();
657 // Strip out comment environment
658 if (strncmp(buf
, "\\begin{comment}", 15) == 0)
660 while (strncmp(buf
, "\\end{comment}", 13) != 0)
662 return read_a_line(buf
);
664 // Read a verbatim input file as if it were a verbatim environment
665 else if (strncmp(buf
, "\\verbatiminput", 14) == 0)
668 char *fileName
= buf
+ wordLen
+ 1;
670 int j
= bufIndex
- 1;
673 // thing}\par -- eliminate the \par!
674 if (strncmp((buf
+ strlen(buf
)-5), "\\par", 4) == 0)
681 buf
[j
-1] = 0; // Ignore final brace
683 wxString actualFile
= TexPathList
.FindValidPath(fileName
);
684 currentFileName
= actualFile
;
685 if (actualFile
== "")
688 errBuf
.Printf("Could not find file: %s",fileName
);
689 OnError((char *)errBuf
.c_str());
694 informStr
.Printf("Processing: %s",actualFile
.c_str());
695 OnInform((char *)informStr
.c_str());
696 CurrentInputIndex
++;
698 Inputs
[CurrentInputIndex
] = fopen(actualFile
, "r");
699 LineNumbers
[CurrentInputIndex
] = 1;
700 if (FileNames
[CurrentInputIndex
])
701 delete[] FileNames
[CurrentInputIndex
];
702 FileNames
[CurrentInputIndex
] = copystring(actualFile
);
704 if (!Inputs
[CurrentInputIndex
])
706 CurrentInputIndex
--;
707 OnError("Could not open verbatiminput file.");
711 readingVerbatim
= TRUE
;
712 readInVerbatim
= TRUE
;
713 strcpy(buf
, "\\begin{verbatim}\n");
719 else if (strncmp(buf
, "\\input", 6) == 0 || strncmp(buf
, "\\helpinput", 10) == 0 ||
720 strncmp(buf
, "\\include", 8) == 0)
723 if (strncmp(buf
, "\\input", 6) == 0)
726 if (strncmp(buf
, "\\include", 8) == 0)
731 char *fileName
= buf
+ wordLen
+ 1;
733 int j
= bufIndex
- 1;
736 // \input{thing}\par -- eliminate the \par!
737 // if (strncmp((buf + strlen(buf)-5), "\\par", 4) == 0)
738 if (strncmp((buf
+ strlen(buf
)-4), "\\par", 4) == 0) // Bug fix 8/2/95 Ulrich Leodolter
746 buf
[j
-1] = 0; // Ignore final brace
748 // Remove backslashes from name
749 wxString
fileNameStr(fileName
);
750 fileNameStr
.Replace("\\", "");
752 // Ignore some types of input files (e.g. macro definition files)
753 char *fileOnly
= wxFileNameFromPath((char*) (const char*) fileNameStr
);
754 currentFileName
= fileOnly
;
755 if (IgnorableInputFiles
.Member(fileOnly
))
756 return read_a_line(buf
);
758 wxString actualFile
= TexPathList
.FindValidPath(fileNameStr
);
759 if (actualFile
== "")
762 sprintf(buf2
, "%s.tex", (const char*) fileNameStr
);
763 actualFile
= TexPathList
.FindValidPath(buf2
);
765 currentFileName
= actualFile
;
767 if (actualFile
== "")
770 errBuf
.Printf("Could not find file: %s",fileName
);
771 OnError((char *)errBuf
.c_str());
775 // Ensure that if this file includes another,
776 // then we look in the same directory as this one.
777 TexPathList
.EnsureFileAccessible(actualFile
);
780 informStr
.Printf("Processing: %s",actualFile
.c_str());
781 OnInform((char *)informStr
.c_str());
782 CurrentInputIndex
++;
784 Inputs
[CurrentInputIndex
] = fopen(actualFile
, "r");
785 LineNumbers
[CurrentInputIndex
] = 1;
786 if (FileNames
[CurrentInputIndex
])
787 delete[] FileNames
[CurrentInputIndex
];
788 FileNames
[CurrentInputIndex
] = copystring(actualFile
);
790 if (!Inputs
[CurrentInputIndex
])
793 errBuf
.Printf("Could not open include file %s", (const char*) actualFile
);
794 CurrentInputIndex
--;
795 OnError((char *)errBuf
.c_str());
798 bool succ
= read_a_line(buf
);
804 wxString bufStr
= buf
;
807 for (index
=0; syntaxTokens
[index
] != wxEmptyString
; index
++)
809 pos
= bufStr
.find(syntaxTokens
[index
]);
810 if (pos
!= wxString::npos
&& pos
!= 0)
812 size_t commentStart
= bufStr
.find("%");
813 if (commentStart
== wxString::npos
|| commentStart
> pos
)
816 if (syntaxTokens
[index
] == "\\verb")
818 errBuf
.Printf("'%s$....$' was detected at line %lu inside file %s. Please replace this form with \\tt{....}",
819 syntaxTokens
[index
].c_str(),
820 LineNumbers
[CurrentInputIndex
],
821 currentFileName
.c_str());
825 errBuf
.Printf("'%s' was detected at line %lu inside file %s that is not the only text on the line, starting at column one.",
826 syntaxTokens
[index
].c_str(),
827 LineNumbers
[CurrentInputIndex
],
828 currentFileName
.c_str());
830 OnError((char *)errBuf
.c_str());
836 if (strncmp(buf
, "\\begin{verbatim}", 16) == 0 ||
837 strncmp(buf
, "\\begin{toocomplex}", 18) == 0)
838 readInVerbatim
= TRUE
;
839 else if (strncmp(buf
, "\\end{verbatim}", 14) == 0 ||
840 strncmp(buf
, "\\end{toocomplex}", 16) == 0)
841 readInVerbatim
= FALSE
;
843 if (checkCurleyBraces
)
845 if (ch
== EOF
&& leftCurley
!= rightCurley
)
848 errBuf
.Printf("Curley braces do not match inside file %s\n%lu opens, %lu closes", (const char*) currentFileName
.c_str(),leftCurley
,rightCurley
);
849 OnError((char *)errBuf
.c_str());
861 bool ParseNewCommand(char *buffer
, int *pos
)
863 if ((strncmp((buffer
+(*pos
)), "newcommand", 10) == 0) ||
864 (strncmp((buffer
+(*pos
)), "renewcommand", 12) == 0))
866 if (strncmp((buffer
+(*pos
)), "newcommand", 10) == 0)
871 char commandName
[100];
872 char commandValue
[1000];
875 while (buffer
[*pos
] != '}' && (buffer
[*pos
] != 0))
877 commandName
[i
] = buffer
[*pos
];
884 if (buffer
[*pos
] == '[')
887 noArgs
= (int)(buffer
[*pos
]) - 48;
888 *pos
+= 2; // read past argument and '['
894 char ch
= buffer
[*pos
];
905 if (!read_a_line(buffer
))
910 commandValue
[i
] = ch
;
916 CustomMacro
*macro
= new CustomMacro(commandName
, noArgs
, NULL
);
917 if (strlen(commandValue
) > 0)
918 macro
->macroBody
= copystring(commandValue
);
919 if (!CustomMacroList
.Find(commandName
))
921 CustomMacroList
.Append(commandName
, macro
);
922 AddMacroDef(ltCUSTOM_MACRO
, commandName
, noArgs
);
929 void MacroError(char *buffer
)
936 while (((ch
= buffer
[i
-1]) != '\n') && (ch
!= 0))
945 errBuf
.Printf("Could not find macro: %s at line %d, file %s",
946 macroBuf
, (int)(LineNumbers
[CurrentInputIndex
]-1), FileNames
[CurrentInputIndex
]);
947 OnError((char *)errBuf
.c_str());
949 if (wxStrcmp(macroBuf
,"\\end{document}") == 0)
952 buf
= "Halted build due to unrecoverable error.";
953 OnInform((char *)buf
.c_str());
960 * 'environment' specifies the name of the macro IFF if we're looking for the end
961 * of an environment, e.g. \end{itemize}. Otherwise it's NULL.
962 * 'parseToBrace' is TRUE if the argument should extend to the next right brace,
963 * e.g. in {\bf an argument} as opposed to \vskip 30pt
966 int ParseArg(TexChunk
*thisArg
, wxList
& children
, char *buffer
, int pos
, char *environment
, bool parseToBrace
, TexChunk
*customMacroArgs
)
969 if (stopRunning
) return pos
;
978 // Consume leading brace or square bracket, but ONLY if not following
979 // a space, because this could be e.g. {\large {\bf thing}} where {\bf thing}
980 // is the argument of \large AS WELL as being a block in its
984 if ((pos > 0) && (buffer[pos-1] != ' ') && buffer[pos] == '{')
988 if ((pos > 0) && (buffer[pos-1] != ' ') && (buffer[pos] == '[' || buffer[pos] == '('))
993 else if ((pos > 1) && (buffer[pos-1] != ' ') && (buffer[pos+1] == '[' || buffer[pos+1] == '('))
1001 // If not parsing to brace, just read the next word
1002 // (e.g. \vskip 20pt)
1005 int ch
= buffer
[pos
];
1006 while (!eof
&& ch
!= 13 && ch
!= 32 && ch
!= 10 &&
1007 ch
!= 0 && ch
!= '{')
1009 BigBuffer
[buf_ptr
] = ch
;
1016 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1017 BigBuffer
[buf_ptr
] = 0;
1019 chunk
->value
= copystring(BigBuffer
);
1020 children
.Append((wxObject
*)chunk
);
1027 len
= strlen(buffer
);
1030 if (customMacroArgs
) return 0;
1032 eof
= read_a_line(buffer
);
1034 len
= strlen(buffer
);
1035 // Check for verbatim (or toocomplex, which comes to the same thing)
1036 wxString bufStr
= buffer
;
1037 // if (bufStr.find("\\begin{verbatim}") != wxString::npos ||
1038 // bufStr.find("\\begin{toocomplex}") != wxString::npos)
1039 if (strncmp(buffer
, "\\begin{verbatim}", 16) == 0 ||
1040 strncmp(buffer
, "\\begin{toocomplex}", 18) == 0)
1044 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1045 BigBuffer
[buf_ptr
] = 0;
1047 chunk
->value
= copystring(BigBuffer
);
1048 children
.Append((wxObject
*)chunk
);
1053 eof
= read_a_line(buffer
);
1054 while (!eof
&& (strncmp(buffer
, "\\end{verbatim}", 14) != 0) &&
1055 (strncmp(buffer
, "\\end{toocomplex}", 16) != 0)
1058 strcat(BigBuffer
, buffer
);
1059 buf_ptr
+= strlen(buffer
);
1060 eof
= read_a_line(buffer
);
1062 eof
= read_a_line(buffer
);
1065 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, VerbatimMacroDef
);
1067 chunk
->macroId
= ltVERBATIM
;
1068 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, VerbatimMacroDef
);
1070 arg
->macroId
= ltVERBATIM
;
1071 TexChunk
*str
= new TexChunk(CHUNK_TYPE_STRING
);
1072 str
->value
= copystring(BigBuffer
);
1074 children
.Append((wxObject
*)chunk
);
1075 chunk
->children
.Append((wxObject
*)arg
);
1076 arg
->children
.Append((wxObject
*)str
);
1078 // Also want to include the following newline (is always a newline
1079 // after a verbatim): EXCEPT in HTML
1080 if (convertMode
!= TEX_HTML
)
1082 TexMacroDef
*parDef
= (TexMacroDef
*)MacroDefs
.Get("\\");
1083 TexChunk
*parChunk
= new TexChunk(CHUNK_TYPE_MACRO
, parDef
);
1084 parChunk
->no_args
= 0;
1085 parChunk
->macroId
= ltBACKSLASHCHAR
;
1086 children
.Append((wxObject
*)parChunk
);
1091 char ch
= buffer
[pos
];
1092 // End of optional argument -- pretend it's right brace for simplicity
1093 if (thisArg
->optional
&& (ch
== ']'))
1099 case '}': // End of argument
1103 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1104 BigBuffer
[buf_ptr
] = 0;
1106 chunk
->value
= copystring(BigBuffer
);
1107 children
.Append((wxObject
*)chunk
);
1109 if (ch
== '}') pos
++;
1115 if (buf_ptr
> 0) // Finish off the string we've read so far
1117 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1118 BigBuffer
[buf_ptr
] = 0;
1120 chunk
->value
= copystring(BigBuffer
);
1121 children
.Append((wxObject
*)chunk
);
1125 // Try matching \end{environment}
1126 if (environment
&& FindEndEnvironment(buffer
, &pos
, environment
))
1128 // Eliminate newline after an \end{} if possible
1129 if (buffer
[pos
] == 13)
1132 if (buffer
[pos
] == 10)
1138 if (ParseNewCommand(buffer
, &pos
))
1141 if (strncmp(buffer
+pos
, "special", 7) == 0)
1149 wxTex2RTFBuffer
[0] = 0;
1154 int ch
= buffer
[pos
];
1160 wxTex2RTFBuffer
[i
] = 0;
1165 wxTex2RTFBuffer
[i
] = '}';
1172 wxTex2RTFBuffer
[i
] = '{';
1176 else if (ch
== '\\' && buffer
[pos
+1] == '}')
1178 wxTex2RTFBuffer
[i
] = '}';
1182 else if (ch
== '\\' && buffer
[pos
+1] == '{')
1184 wxTex2RTFBuffer
[i
] = '{';
1190 wxTex2RTFBuffer
[i
] = ch
;
1197 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1199 chunk
->macroId
= ltSPECIAL
;
1200 TexMacroDef
*specialDef
= (TexMacroDef
*)MacroDefs
.Get("special");
1201 chunk
->def
= specialDef
;
1202 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, specialDef
);
1203 chunk
->children
.Append((wxObject
*)arg
);
1205 arg
->macroId
= chunk
->macroId
;
1207 // The value in the first argument.
1208 TexChunk
*argValue
= new TexChunk(CHUNK_TYPE_STRING
);
1209 arg
->children
.Append((wxObject
*)argValue
);
1211 argValue
->value
= copystring(wxTex2RTFBuffer
);
1213 children
.Append((wxObject
*)chunk
);
1215 else if (strncmp(buffer
+pos
, "verb", 4) == 0)
1218 if (buffer
[pos
] == '*')
1221 // Find the delimiter character
1222 int ch
= buffer
[pos
];
1224 // Now at start of verbatim text
1226 while ((buffer
[pos
] != ch
) && buffer
[pos
] != 0)
1228 char *val
= new char[pos
- j
+ 1];
1230 for (i
= j
; i
< pos
; i
++)
1232 val
[i
-j
] = buffer
[i
];
1238 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1240 chunk
->macroId
= ltVERB
;
1241 TexMacroDef
*verbDef
= (TexMacroDef
*)MacroDefs
.Get("verb");
1242 chunk
->def
= verbDef
;
1243 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, verbDef
);
1244 chunk
->children
.Append((wxObject
*)arg
);
1246 arg
->macroId
= chunk
->macroId
;
1248 // The value in the first argument.
1249 TexChunk
*argValue
= new TexChunk(CHUNK_TYPE_STRING
);
1250 arg
->children
.Append((wxObject
*)argValue
);
1252 argValue
->value
= val
;
1254 children
.Append((wxObject
*)chunk
);
1259 bool tmpParseToBrace
= TRUE
;
1260 TexMacroDef
*def
= MatchMacro(buffer
, &pos
, &env
, &tmpParseToBrace
);
1263 CustomMacro
*customMacro
= FindCustomMacro(def
->name
);
1265 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, def
);
1267 chunk
->no_args
= def
->no_args
;
1268 // chunk->name = copystring(def->name);
1269 chunk
->macroId
= def
->macroId
;
1272 children
.Append((wxObject
*)chunk
);
1274 // Eliminate newline after a \begin{} or a \\ if possible
1275 if (env
|| strcmp(def
->name
, "\\") == 0)
1276 if (buffer
[pos
] == 13)
1279 if (buffer
[pos
] == 10)
1283 pos
= ParseMacroBody(def
->name
, chunk
, chunk
->no_args
,
1284 buffer
, pos
, env
, tmpParseToBrace
, customMacroArgs
);
1286 // If custom macro, parse the body substituting the above found args.
1289 if (customMacro
->macroBody
)
1292 // strcpy(macroBuf, "{");
1293 strcpy(macroBuf
, customMacro
->macroBody
);
1294 strcat(macroBuf
, "}");
1295 ParseArg(thisArg
, children
, macroBuf
, 0, NULL
, TRUE
, chunk
);
1298 // delete chunk; // Might delete children
1303 MacroError(buffer
+pos
);
1308 // Parse constructs like {\bf thing} as if they were
1313 if (buffer
[pos
] == '\\')
1317 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1318 BigBuffer
[buf_ptr
] = 0;
1320 chunk
->value
= copystring(BigBuffer
);
1321 children
.Append((wxObject
*)chunk
);
1326 bool tmpParseToBrace
;
1327 TexMacroDef
*def
= MatchMacro(buffer
, &pos
, &env
, &tmpParseToBrace
);
1330 CustomMacro
*customMacro
= FindCustomMacro(def
->name
);
1332 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, def
);
1333 chunk
->no_args
= def
->no_args
;
1334 // chunk->name = copystring(def->name);
1335 chunk
->macroId
= def
->macroId
;
1337 children
.Append((wxObject
*)chunk
);
1339 pos
= ParseMacroBody(def
->name
, chunk
, chunk
->no_args
,
1340 buffer
, pos
, NULL
, TRUE
, customMacroArgs
);
1342 // If custom macro, parse the body substituting the above found args.
1345 if (customMacro
->macroBody
)
1348 // strcpy(macroBuf, "{");
1349 strcpy(macroBuf
, customMacro
->macroBody
);
1350 strcat(macroBuf
, "}");
1351 ParseArg(thisArg
, children
, macroBuf
, 0, NULL
, TRUE
, chunk
);
1354 // delete chunk; // Might delete children
1359 MacroError(buffer
+pos
);
1365 * If all else fails, we assume that we have
1366 * a pair of braces on their own, so return a `dummy' macro
1367 * definition with just one argument to parse.
1371 SoloBlockDef
= new TexMacroDef(ltSOLO_BLOCK
, "solo block", 1, FALSE
);
1376 TexChunk
*chunk1
= new TexChunk(CHUNK_TYPE_STRING
);
1377 BigBuffer
[buf_ptr
] = 0;
1379 chunk1
->value
= copystring(BigBuffer
);
1380 children
.Append((wxObject
*)chunk1
);
1382 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, SoloBlockDef
);
1383 chunk
->no_args
= SoloBlockDef
->no_args
;
1384 // chunk->name = copystring(SoloBlockDef->name);
1385 chunk
->macroId
= SoloBlockDef
->macroId
;
1386 children
.Append((wxObject
*)chunk
);
1388 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, SoloBlockDef
);
1390 chunk
->children
.Append((wxObject
*)arg
);
1391 // arg->name = copystring(SoloBlockDef->name);
1393 arg
->macroId
= chunk
->macroId
;
1395 pos
= ParseArg(arg
, arg
->children
, buffer
, pos
, NULL
, TRUE
, customMacroArgs
);
1403 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1404 BigBuffer
[buf_ptr
] = 0;
1406 chunk
->value
= copystring(BigBuffer
);
1407 children
.Append((wxObject
*)chunk
);
1412 if (buffer
[pos
] == '$')
1414 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1416 // chunk->name = copystring("$$");
1417 chunk
->macroId
= ltSPECIALDOUBLEDOLLAR
;
1418 children
.Append((wxObject
*)chunk
);
1423 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1425 // chunk->name = copystring("_$");
1426 chunk
->macroId
= ltSPECIALDOLLAR
;
1427 children
.Append((wxObject
*)chunk
);
1435 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1436 BigBuffer
[buf_ptr
] = 0;
1438 chunk
->value
= copystring(BigBuffer
);
1439 children
.Append((wxObject
*)chunk
);
1443 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1445 // chunk->name = copystring("_~");
1446 chunk
->macroId
= ltSPECIALTILDE
;
1447 children
.Append((wxObject
*)chunk
);
1450 case '#': // Either treat as a special TeX character or as a macro arg
1454 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1455 BigBuffer
[buf_ptr
] = 0;
1457 chunk
->value
= copystring(BigBuffer
);
1458 children
.Append((wxObject
*)chunk
);
1462 if (!customMacroArgs
)
1464 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1466 // chunk->name = copystring("_#");
1467 chunk
->macroId
= ltSPECIALHASH
;
1468 children
.Append((wxObject
*)chunk
);
1472 if (isdigit(buffer
[pos
]))
1474 int n
= buffer
[pos
] - 48;
1476 wxNode
*node
= customMacroArgs
->children
.Nth(n
-1);
1479 TexChunk
*argChunk
= (TexChunk
*)node
->Data();
1480 children
.Append((wxObject
*)new TexChunk(*argChunk
));
1488 // Remove white space before and after the ampersand,
1489 // since this is probably a table column separator with
1490 // some convenient -- but useless -- white space in the text.
1491 while ((buf_ptr
> 0) && ((BigBuffer
[buf_ptr
-1] == ' ') || (BigBuffer
[buf_ptr
-1] == 9)))
1496 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1497 BigBuffer
[buf_ptr
] = 0;
1499 chunk
->value
= copystring(BigBuffer
);
1500 children
.Append((wxObject
*)chunk
);
1505 while (buffer
[pos
] == ' ' || buffer
[pos
] == 9)
1508 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1510 // chunk->name = copystring("_&");
1511 chunk
->macroId
= ltSPECIALAMPERSAND
;
1512 children
.Append((wxObject
*)chunk
);
1515 // Eliminate end-of-line comment
1519 while (ch
!= 10 && ch
!= 13 && ch
!= 0)
1524 if (buffer
[pos
] == 10 || buffer
[pos
] == 13)
1527 if (buffer
[pos
] == 10) pos
++; // Eliminate newline following DOS line feed
1534 BigBuffer
[buf_ptr
] = ' ';
1535 BigBuffer
[buf_ptr
+1] = 0;
1542 BigBuffer
[buf_ptr
] = ch
;
1543 BigBuffer
[buf_ptr
+1] = 0;
1554 * Consume as many arguments as the macro definition specifies
1558 int ParseMacroBody(const char *macro_name
, TexChunk
*parent
,
1559 int no_args
, char *buffer
, int pos
,
1560 char *environment
, bool parseToBrace
,
1561 TexChunk
*customMacroArgs
)
1564 if (stopRunning
) return pos
;
1566 // Check for a first optional argument
1567 if (buffer
[pos
] == ' ' && buffer
[pos
+1] == '[')
1569 // Fool following code into thinking that this is definitely
1570 // an optional first argument. (If a space before a non-first argument,
1571 // [ is interpreted as a [, not an optional argument.)
1577 if (buffer
[pos
] == '[')
1583 for (i
= 0; i
< no_args
; i
++)
1586 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, parent
->def
);
1588 parent
->children
.Append((wxObject
*)arg
);
1589 // arg->name = copystring(macro_name);
1590 arg
->argn
= maxArgs
;
1591 arg
->macroId
= parent
->macroId
;
1593 // To parse the first arg of a 2 arg \begin{thing}{arg} ... \end{thing}
1594 // have to fool parser into thinking this is a regular kind of block.
1596 if ((no_args
== 2) && (i
== 0))
1599 actualEnv
= environment
;
1601 bool isOptional
= FALSE
;
1603 // Remove the first { of the argument so it doesn't get recognized as { ... }
1604 // EatWhiteSpace(buffer, &pos);
1607 // The reason for these tests is to not consume braces that don't
1608 // belong to this macro.
1609 // E.g. {\bf {\small thing}}
1610 if ((pos
> 0) && (buffer
[pos
-1] != ' ') && buffer
[pos
] == '{')
1613 if ((pos
> 0) && (buffer
[pos
-1] != ' ') && (buffer
[pos
] == '['))
1618 else if ((pos
> 1) && (buffer
[pos
-1] != ' ') && (buffer
[pos
+1] == '['))
1626 wxString
tmpBuffer(buffer
);
1627 if (tmpBuffer
.length() > 4)
1629 if (tmpBuffer
.Right(4) == "\\par")
1630 tmpBuffer
= tmpBuffer
.Mid(0,tmpBuffer
.length()-4);
1632 errBuf
.Printf("Missing macro argument in the line:\n\t%s\n",tmpBuffer
.c_str());
1633 OnError((char *)errBuf
.c_str());
1637 arg
->optional
= isOptional
;
1639 pos
= ParseArg(arg
, arg
->children
, buffer
, pos
, actualEnv
, parseToBrace
, customMacroArgs
);
1641 // If we've encountered an OPTIONAL argument, go another time around
1642 // the loop, because we've got more than we thought.
1643 // Hopefully optional args don't occur at the end of a macro use
1644 // or we might miss it.
1645 // Don't increment no of times round loop if the first optional arg
1646 // -- we already did it before the loop.
1647 if (arg
->optional
&& (i
> 0))
1650 parent
->no_args
= maxArgs
;
1652 // Tell each argument how many args there are (useful when processing an arg)
1653 wxNode
*node
= parent
->children
.First();
1656 TexChunk
*chunk
= (TexChunk
*)node
->Data();
1657 chunk
->no_args
= maxArgs
;
1658 node
= node
->Next();
1663 bool TexLoadFile(char *filename
)
1665 static char *line_buffer
;
1666 stopRunning
= FALSE
;
1667 strcpy(TexFileRoot
, filename
);
1668 StripExtension(TexFileRoot
);
1669 sprintf(TexBibName
, "%s.bb", TexFileRoot
);
1670 sprintf(TexTmpBibName
, "%s.bb1", TexFileRoot
);
1672 TexPathList
.EnsureFileAccessible(filename
);
1677 line_buffer
= new char[MAX_LINE_BUFFER_SIZE
];
1679 Inputs
[0] = fopen(filename
, "r");
1681 FileNames
[0] = copystring(filename
);
1684 read_a_line(line_buffer
);
1685 ParseMacroBody("toplevel", TopLevel
, 1, line_buffer
, 0, NULL
, TRUE
);
1686 if (Inputs
[0]) fclose(Inputs
[0]);
1693 TexMacroDef::TexMacroDef(int the_id
, const char *the_name
, int n
, bool ig
, bool forbidLevel
)
1695 name
= copystring(the_name
);
1699 forbidden
= forbidLevel
;
1702 TexMacroDef::~TexMacroDef(void)
1704 if (name
) delete[] name
;
1707 TexChunk::TexChunk(int the_type
, TexMacroDef
*the_def
)
1719 TexChunk::TexChunk(TexChunk
& toCopy
)
1722 no_args
= toCopy
.no_args
;
1724 macroId
= toCopy
.macroId
;
1727 // name = copystring(toCopy.name);
1733 value
= copystring(toCopy
.value
);
1737 optional
= toCopy
.optional
;
1738 wxNode
*node
= toCopy
.children
.First();
1741 TexChunk
*child
= (TexChunk
*)node
->Data();
1742 children
.Append((wxObject
*)new TexChunk(*child
));
1743 node
= node
->Next();
1747 TexChunk::~TexChunk(void)
1749 // if (name) delete[] name;
1750 if (value
) delete[] value
;
1751 wxNode
*node
= children
.First();
1754 TexChunk
*child
= (TexChunk
*)node
->Data();
1756 wxNode
*next
= node
->Next();
1762 bool IsArgOptional(void) // Is this argument an optional argument?
1764 return isArgOptional
;
1767 int GetNoArgs(void) // Number of args for this macro
1772 /* Gets the text of a chunk on request (must be for small arguments
1777 void GetArgData1(TexChunk
*chunk
)
1779 switch (chunk
->type
)
1781 case CHUNK_TYPE_MACRO
:
1783 TexMacroDef
*def
= chunk
->def
;
1784 if (def
&& def
->ignore
)
1787 if (def
&& (strcmp(def
->name
, "solo block") != 0))
1789 strcat(currentArgData
, "\\");
1790 strcat(currentArgData
, def
->name
);
1793 wxNode
*node
= chunk
->children
.First();
1796 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1797 strcat(currentArgData
, "{");
1798 GetArgData1(child_chunk
);
1799 strcat(currentArgData
, "}");
1800 node
= node
->Next();
1804 case CHUNK_TYPE_ARG
:
1806 wxNode
*node
= chunk
->children
.First();
1809 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1810 GetArgData1(child_chunk
);
1811 node
= node
->Next();
1815 case CHUNK_TYPE_STRING
:
1818 strcat(currentArgData
, chunk
->value
);
1824 char *GetArgData(TexChunk
*chunk
)
1826 currentArgData
[0] = 0;
1827 GetArgData1(currentArgument
);
1828 haveArgData
= FALSE
;
1829 return currentArgData
;
1832 char *GetArgData(void)
1836 currentArgData
[0] = 0;
1837 GetArgData1(currentArgument
);
1839 return currentArgData
;
1842 TexChunk
*GetArgChunk(void)
1844 return currentArgument
;
1847 TexChunk
*GetNextChunk(void) // Look ahead to the next chunk
1852 TexChunk
*GetTopLevelChunk(void)
1857 int GetCurrentColumn(void)
1859 return currentColumn
;
1863 * Traverses document calling functions to allow the client to
1864 * write out the appropriate stuff
1868 void TraverseFromChunk(TexChunk
*chunk
, wxNode
*thisNode
, bool childrenOnly
)
1871 if (stopRunning
) return;
1873 switch (chunk
->type
)
1875 case CHUNK_TYPE_MACRO
:
1877 TexMacroDef
*def
= chunk
->def
;
1878 if (def
&& def
->ignore
)
1882 OnMacro(chunk
->macroId
, chunk
->no_args
, TRUE
);
1884 wxNode
*node
= chunk
->children
.First();
1885 TexChunk
*child_chunk
= NULL
;
1888 child_chunk
= (TexChunk
*)node
->Data();
1889 TraverseFromChunk(child_chunk
, node
);
1890 node
= node
->Next();
1893 if (thisNode
&& thisNode
->Next())
1894 nextChunk
= (TexChunk
*)thisNode
->Next()->Data();
1897 OnMacro(chunk
->macroId
, chunk
->no_args
, FALSE
);
1900 case CHUNK_TYPE_ARG
:
1902 currentArgument
= chunk
;
1904 isArgOptional
= chunk
->optional
;
1905 noArgs
= chunk
->no_args
;
1907 // If OnArgument returns FALSE, don't output.
1909 if (childrenOnly
|| OnArgument(chunk
->macroId
, chunk
->argn
, TRUE
))
1911 wxNode
*node
= chunk
->children
.First();
1914 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1915 TraverseFromChunk(child_chunk
, node
);
1916 node
= node
->Next();
1920 currentArgument
= chunk
;
1922 if (thisNode
&& thisNode
->Next())
1923 nextChunk
= (TexChunk
*)thisNode
->Next()->Data();
1925 isArgOptional
= chunk
->optional
;
1926 noArgs
= chunk
->no_args
;
1929 (void)OnArgument(chunk
->macroId
, chunk
->argn
, FALSE
);
1932 case CHUNK_TYPE_STRING
:
1934 extern int issuedNewParagraph
;
1935 extern int forbidResetPar
;
1936 if (chunk
->value
&& (forbidResetPar
== 0))
1938 // If non-whitespace text, we no longer have a new paragraph.
1939 if (issuedNewParagraph
&& !((chunk
->value
[0] == 10 || chunk
->value
[0] == 13 || chunk
->value
[0] == 32)
1940 && chunk
->value
[1] == 0))
1942 issuedNewParagraph
= FALSE
;
1944 TexOutput(chunk
->value
, TRUE
);
1951 void TraverseDocument(void)
1953 TraverseFromChunk(TopLevel
, NULL
);
1956 void SetCurrentOutput(FILE *fd
)
1958 CurrentOutput1
= fd
;
1959 CurrentOutput2
= NULL
;
1962 void SetCurrentOutputs(FILE *fd1
, FILE *fd2
)
1964 CurrentOutput1
= fd1
;
1965 CurrentOutput2
= fd2
;
1968 void AddMacroDef(int the_id
, const char *name
, int n
, bool ignore
, bool forbid
)
1970 MacroDefs
.Put(name
, new TexMacroDef(the_id
, name
, n
, ignore
, forbid
));
1973 void TexInitialize(int bufSize
)
1975 InitialiseColourTable();
1977 TexPathList
.AddEnvList("TEXINPUT");
1980 TexPathList
.AddEnvList("TEXINPUTS");
1983 for (i
= 0; i
< 15; i
++)
1987 FileNames
[i
] = NULL
;
1990 IgnorableInputFiles
.Add("psbox.tex");
1991 BigBuffer
= new char[(bufSize
*1000)];
1992 currentArgData
= new char[2000];
1993 TexFileRoot
= new char[300];
1994 TexBibName
= new char[300];
1995 TexTmpBibName
= new char[300];
1996 AddMacroDef(ltTOPLEVEL
, "toplevel", 1);
1997 TopLevel
= new TexChunk(CHUNK_TYPE_MACRO
);
1998 // TopLevel->name = copystring("toplevel");
1999 TopLevel
->macroId
= ltTOPLEVEL
;
2000 TopLevel
->no_args
= 1;
2001 VerbatimMacroDef
= (TexMacroDef
*)MacroDefs
.Get("verbatim");
2004 void TexCleanUp(void)
2007 for (i
= 0; i
< 15; i
++)
2013 subsubsectionNo
= 0;
2016 CurrentOutput1
= NULL
;
2017 CurrentOutput2
= NULL
;
2018 CurrentInputIndex
= 0;
2019 haveArgData
= FALSE
;
2024 TopLevel
= new TexChunk(CHUNK_TYPE_MACRO
);
2025 // TopLevel->name = copystring("toplevel");
2026 TopLevel
->macroId
= ltTOPLEVEL
;
2027 TopLevel
->no_args
= 1;
2029 DocumentTitle
= NULL
;
2030 DocumentAuthor
= NULL
;
2031 DocumentDate
= NULL
;
2032 DocumentStyle
= LATEX_REPORT
;
2033 MinorDocumentStyle
= 0;
2034 BibliographyStyleString
= copystring("plain");
2035 DocumentStyleString
= copystring("report");
2036 MinorDocumentStyleString
= NULL
;
2038 // gt - Changed this so if this is the final pass
2039 // then we DO want to remove these macros, so that
2040 // memory is not MASSIVELY leaked if the user
2041 // does not exit the program, but instead runs
2042 // the program again
2043 if ((passNumber
== 1 && !runTwice
) ||
2044 (passNumber
== 2 && runTwice
))
2046 /* Don't want to remove custom macros after each pass.*/
2048 wxNode
*node
= CustomMacroList
.First();
2051 CustomMacro
*macro
= (CustomMacro
*)node
->Data();
2054 node
= CustomMacroList
.First();
2058 TexReferences
.BeginFind();
2059 wxNode
*node
= TexReferences
.Next();
2062 TexRef
*ref
= (TexRef
*)node
->Data();
2064 node
= TexReferences
.Next();
2066 TexReferences
.Clear();
2068 node
= BibList
.First();
2071 BibEntry
*entry
= (BibEntry
*)node
->Data();
2074 node
= BibList
.First();
2076 CitationList
.Clear();
2077 ResetTopicCounter();
2080 // There is likely to be one set of macros used by all utilities.
2081 void DefineDefaultMacros(void)
2083 // Put names which subsume other names at the TOP
2084 // so they get recognized first
2086 AddMacroDef(ltACCENT_GRAVE
, "`", 1);
2087 AddMacroDef(ltACCENT_ACUTE
, "'", 1);
2088 AddMacroDef(ltACCENT_CARET
, "^", 1);
2089 AddMacroDef(ltACCENT_UMLAUT
, "\"", 1);
2090 AddMacroDef(ltACCENT_TILDE
, "~", 1);
2091 AddMacroDef(ltACCENT_DOT
, ".", 1);
2092 AddMacroDef(ltACCENT_CADILLA
, "c", 1);
2093 AddMacroDef(ltSMALLSPACE1
, ",", 0);
2094 AddMacroDef(ltSMALLSPACE2
, ";", 0);
2096 AddMacroDef(ltABSTRACT
, "abstract", 1);
2097 AddMacroDef(ltADDCONTENTSLINE
, "addcontentsline", 3);
2098 AddMacroDef(ltADDTOCOUNTER
, "addtocounter", 2);
2099 AddMacroDef(ltALEPH
, "aleph", 0);
2100 AddMacroDef(ltALPHA
, "alpha", 0);
2101 AddMacroDef(ltALPH1
, "alph", 1);
2102 AddMacroDef(ltALPH2
, "Alph", 1);
2103 AddMacroDef(ltANGLE
, "angle", 0);
2104 AddMacroDef(ltAPPENDIX
, "appendix", 0);
2105 AddMacroDef(ltAPPROX
, "approx", 0);
2106 AddMacroDef(ltARABIC
, "arabic", 1);
2107 AddMacroDef(ltARRAY
, "array", 1);
2108 AddMacroDef(ltAST
, "ast", 0);
2109 AddMacroDef(ltASYMP
, "asymp", 0);
2110 AddMacroDef(ltAUTHOR
, "author", 1);
2112 AddMacroDef(ltBACKGROUNDCOLOUR
, "backgroundcolour", 1);
2113 AddMacroDef(ltBACKGROUNDIMAGE
, "backgroundimage", 1);
2114 AddMacroDef(ltBACKGROUND
, "background", 1);
2115 AddMacroDef(ltBACKSLASHRAW
, "backslashraw", 0);
2116 AddMacroDef(ltBACKSLASH
, "backslash", 0);
2117 AddMacroDef(ltBASELINESKIP
, "baselineskip", 1);
2118 AddMacroDef(ltBCOL
, "bcol", 2);
2119 AddMacroDef(ltBETA
, "beta", 0);
2120 AddMacroDef(ltBFSERIES
, "bfseries", 1);
2121 AddMacroDef(ltBF
, "bf", 1);
2122 AddMacroDef(ltBIBITEM
, "bibitem", 2); // For convenience, bibitem has 2 args: label and item.
2123 // The Latex syntax permits writing as 2 args.
2124 AddMacroDef(ltBIBLIOGRAPHYSTYLE
, "bibliographystyle", 1);
2125 AddMacroDef(ltBIBLIOGRAPHY
, "bibliography", 1);
2126 AddMacroDef(ltBIGTRIANGLEDOWN
, "bigtriangledown", 0);
2127 AddMacroDef(ltBOT
, "bot", 0);
2128 AddMacroDef(ltBOXIT
, "boxit", 1);
2129 AddMacroDef(ltBOX
, "box", 0);
2130 AddMacroDef(ltBRCLEAR
, "brclear", 0);
2131 AddMacroDef(ltBULLET
, "bullet", 0);
2133 AddMacroDef(ltCAPTIONSTAR
, "caption*", 1);
2134 AddMacroDef(ltCAPTION
, "caption", 1);
2135 AddMacroDef(ltCAP
, "cap", 0);
2136 AddMacroDef(ltCDOTS
, "cdots", 0);
2137 AddMacroDef(ltCDOT
, "cdot", 0);
2138 AddMacroDef(ltCENTERLINE
, "centerline", 1);
2139 AddMacroDef(ltCENTERING
, "centering", 0);
2140 AddMacroDef(ltCENTER
, "center", 1);
2141 AddMacroDef(ltCEXTRACT
, "cextract", 0);
2142 AddMacroDef(ltCHAPTERHEADING
, "chapterheading", 1);
2143 AddMacroDef(ltCHAPTERSTAR
, "chapter*", 1);
2144 AddMacroDef(ltCHAPTER
, "chapter", 1);
2145 AddMacroDef(ltCHI
, "chi", 0);
2146 AddMacroDef(ltCINSERT
, "cinsert", 0);
2147 AddMacroDef(ltCIRC
, "circ", 0);
2148 AddMacroDef(ltCITE
, "cite", 1);
2149 AddMacroDef(ltCLASS
, "class", 1);
2150 AddMacroDef(ltCLEARDOUBLEPAGE
, "cleardoublepage", 0);
2151 AddMacroDef(ltCLEARPAGE
, "clearpage", 0);
2152 AddMacroDef(ltCLINE
, "cline", 1);
2153 AddMacroDef(ltCLIPSFUNC
, "clipsfunc", 3);
2154 AddMacroDef(ltCLUBSUIT
, "clubsuit", 0);
2155 AddMacroDef(ltCOLUMNSEP
, "columnsep", 1);
2156 AddMacroDef(ltCOMMENT
, "comment", 1, TRUE
);
2157 AddMacroDef(ltCONG
, "cong", 0);
2158 AddMacroDef(ltCOPYRIGHT
, "copyright", 0);
2159 AddMacroDef(ltCPARAM
, "cparam", 2);
2160 AddMacroDef(ltCHEAD
, "chead", 1);
2161 AddMacroDef(ltCFOOT
, "cfoot", 1);
2162 AddMacroDef(ltCUP
, "cup", 0);
2164 AddMacroDef(ltDASHV
, "dashv", 0);
2165 AddMacroDef(ltDATE
, "date", 1);
2166 AddMacroDef(ltDELTA
, "delta", 0);
2167 AddMacroDef(ltCAP_DELTA
, "Delta", 0);
2168 AddMacroDef(ltDEFINECOLOUR
, "definecolour", 4);
2169 AddMacroDef(ltDEFINECOLOR
, "definecolor", 4);
2170 AddMacroDef(ltDESCRIPTION
, "description", 1);
2171 AddMacroDef(ltDESTRUCT
, "destruct", 1);
2172 AddMacroDef(ltDIAMOND2
, "diamond2", 0);
2173 AddMacroDef(ltDIAMOND
, "diamond", 0);
2174 AddMacroDef(ltDIV
, "div", 0);
2175 AddMacroDef(ltDOCUMENTCLASS
, "documentclass", 1);
2176 AddMacroDef(ltDOCUMENTSTYLE
, "documentstyle", 1);
2177 AddMacroDef(ltDOCUMENT
, "document", 1);
2178 AddMacroDef(ltDOUBLESPACE
, "doublespace", 1);
2179 AddMacroDef(ltDOTEQ
, "doteq", 0);
2180 AddMacroDef(ltDOWNARROW
, "downarrow", 0);
2181 AddMacroDef(ltDOWNARROW2
, "Downarrow", 0);
2183 AddMacroDef(ltEMPTYSET
, "emptyset", 0);
2184 AddMacroDef(ltEMPH
, "emph", 1);
2185 AddMacroDef(ltEM
, "em", 1);
2186 AddMacroDef(ltENUMERATE
, "enumerate", 1);
2187 AddMacroDef(ltEPSILON
, "epsilon", 0);
2188 AddMacroDef(ltEQUATION
, "equation", 1);
2189 AddMacroDef(ltEQUIV
, "equiv", 0);
2190 AddMacroDef(ltETA
, "eta", 0);
2191 AddMacroDef(ltEVENSIDEMARGIN
, "evensidemargin", 1);
2192 AddMacroDef(ltEXISTS
, "exists", 0);
2194 AddMacroDef(ltFBOX
, "fbox", 1);
2195 AddMacroDef(ltFCOL
, "fcol", 2);
2196 AddMacroDef(ltFIGURE
, "figure", 1);
2197 AddMacroDef(ltFIGURESTAR
, "figure*", 1);
2198 AddMacroDef(ltFLUSHLEFT
, "flushleft", 1);
2199 AddMacroDef(ltFLUSHRIGHT
, "flushright", 1);
2200 AddMacroDef(ltFOLLOWEDLINKCOLOUR
, "followedlinkcolour", 1);
2201 AddMacroDef(ltFOOTHEIGHT
, "footheight", 1);
2202 AddMacroDef(ltFOOTNOTEPOPUP
, "footnotepopup", 2);
2203 AddMacroDef(ltFOOTNOTE
, "footnote", 1);
2204 AddMacroDef(ltFOOTSKIP
, "footskip", 1);
2205 AddMacroDef(ltFORALL
, "forall", 0);
2206 AddMacroDef(ltFRAMEBOX
, "framebox", 1);
2207 AddMacroDef(ltFROWN
, "frown", 0);
2208 AddMacroDef(ltFUNCTIONSECTION
, "functionsection", 1);
2209 AddMacroDef(ltFUNC
, "func", 3);
2210 AddMacroDef(ltFOOTNOTESIZE
, "footnotesize", 0);
2211 AddMacroDef(ltFANCYPLAIN
, "fancyplain", 2);
2213 AddMacroDef(ltGAMMA
, "gamma", 0);
2214 AddMacroDef(ltCAP_GAMMA
, "Gamma", 0);
2215 AddMacroDef(ltGEQ
, "geq", 0);
2216 AddMacroDef(ltGE
, "ge", 0);
2217 AddMacroDef(ltGG
, "gg", 0);
2218 AddMacroDef(ltGLOSSARY
, "glossary", 1);
2219 AddMacroDef(ltGLOSS
, "gloss", 1);
2221 AddMacroDef(ltHEADHEIGHT
, "headheight", 1);
2222 AddMacroDef(ltHEARTSUIT
, "heartsuit", 0);
2223 AddMacroDef(ltHELPGLOSSARY
, "helpglossary", 1);
2224 AddMacroDef(ltHELPIGNORE
, "helpignore", 1, TRUE
);
2225 AddMacroDef(ltHELPONLY
, "helponly", 1);
2226 AddMacroDef(ltHELPINPUT
, "helpinput", 1);
2227 AddMacroDef(ltHELPFONTFAMILY
, "helpfontfamily", 1);
2228 AddMacroDef(ltHELPFONTSIZE
, "helpfontsize", 1);
2229 AddMacroDef(ltHELPREFN
, "helprefn", 2);
2230 AddMacroDef(ltHELPREF
, "helpref", 2);
2231 AddMacroDef(ltHFILL
, "hfill", 0);
2232 AddMacroDef(ltHLINE
, "hline", 0);
2233 AddMacroDef(ltHRULE
, "hrule", 0);
2234 AddMacroDef(ltHSPACESTAR
, "hspace*", 1);
2235 AddMacroDef(ltHSPACE
, "hspace", 1);
2236 AddMacroDef(ltHSKIPSTAR
, "hskip*", 1);
2237 AddMacroDef(ltHSKIP
, "hskip", 1);
2238 AddMacroDef(lthuge
, "huge", 1);
2239 AddMacroDef(ltHuge
, "Huge", 1);
2240 AddMacroDef(ltHUGE
, "HUGE", 1);
2241 AddMacroDef(ltHTMLIGNORE
, "htmlignore", 1);
2242 AddMacroDef(ltHTMLONLY
, "htmlonly", 1);
2244 AddMacroDef(ltIM
, "im", 0);
2245 AddMacroDef(ltINCLUDEONLY
, "includeonly", 1);
2246 AddMacroDef(ltINCLUDE
, "include", 1);
2247 AddMacroDef(ltINDENTED
, "indented", 2);
2248 AddMacroDef(ltINDEX
, "index", 1);
2249 AddMacroDef(ltINPUT
, "input", 1, TRUE
);
2250 AddMacroDef(ltIOTA
, "iota", 0);
2251 AddMacroDef(ltITEMIZE
, "itemize", 1);
2252 AddMacroDef(ltITEM
, "item", 0);
2253 AddMacroDef(ltIMAGEMAP
, "imagemap", 3);
2254 AddMacroDef(ltIMAGEL
, "imagel", 2);
2255 AddMacroDef(ltIMAGER
, "imager", 2);
2256 AddMacroDef(ltIMAGE
, "image", 2);
2257 AddMacroDef(ltIN
, "in", 0);
2258 AddMacroDef(ltINFTY
, "infty", 0);
2259 AddMacroDef(ltITSHAPE
, "itshape", 1);
2260 AddMacroDef(ltIT
, "it", 1);
2261 AddMacroDef(ltITEMSEP
, "itemsep", 1);
2262 AddMacroDef(ltINSERTATLEVEL
, "insertatlevel", 2);
2264 AddMacroDef(ltKAPPA
, "kappa", 0);
2265 AddMacroDef(ltKILL
, "kill", 0);
2267 AddMacroDef(ltLABEL
, "label", 1);
2268 AddMacroDef(ltLAMBDA
, "lambda", 0);
2269 AddMacroDef(ltCAP_LAMBDA
, "Lambda", 0);
2270 AddMacroDef(ltlarge
, "large", 1);
2271 AddMacroDef(ltLarge
, "Large", 1);
2272 AddMacroDef(ltLARGE
, "LARGE", 1);
2273 AddMacroDef(ltLATEXIGNORE
, "latexignore", 1);
2274 AddMacroDef(ltLATEXONLY
, "latexonly", 1);
2275 AddMacroDef(ltLATEX
, "LaTeX", 0);
2276 AddMacroDef(ltLBOX
, "lbox", 1);
2277 AddMacroDef(ltLBRACERAW
, "lbraceraw", 0);
2278 AddMacroDef(ltLDOTS
, "ldots", 0);
2279 AddMacroDef(ltLEQ
, "leq", 0);
2280 AddMacroDef(ltLE
, "le", 0);
2281 AddMacroDef(ltLEFTARROW
, "leftarrow", 0);
2282 AddMacroDef(ltLEFTRIGHTARROW
, "leftrightarrow", 0);
2283 AddMacroDef(ltLEFTARROW2
, "Leftarrow", 0);
2284 AddMacroDef(ltLEFTRIGHTARROW2
, "Leftrightarrow", 0);
2285 AddMacroDef(ltLINEBREAK
, "linebreak", 0);
2286 AddMacroDef(ltLINKCOLOUR
, "linkcolour", 1);
2287 AddMacroDef(ltLISTOFFIGURES
, "listoffigures", 0);
2288 AddMacroDef(ltLISTOFTABLES
, "listoftables", 0);
2289 AddMacroDef(ltLHEAD
, "lhead", 1);
2290 AddMacroDef(ltLFOOT
, "lfoot", 1);
2291 AddMacroDef(ltLOWERCASE
, "lowercase", 1);
2292 AddMacroDef(ltLL
, "ll", 0);
2294 AddMacroDef(ltMAKEGLOSSARY
, "makeglossary", 0);
2295 AddMacroDef(ltMAKEINDEX
, "makeindex", 0);
2296 AddMacroDef(ltMAKETITLE
, "maketitle", 0);
2297 AddMacroDef(ltMARKRIGHT
, "markright", 1);
2298 AddMacroDef(ltMARKBOTH
, "markboth", 2);
2299 AddMacroDef(ltMARGINPARWIDTH
, "marginparwidth", 1);
2300 AddMacroDef(ltMARGINPARSEP
, "marginparsep", 1);
2301 AddMacroDef(ltMARGINPARODD
, "marginparodd", 1);
2302 AddMacroDef(ltMARGINPAREVEN
, "marginpareven", 1);
2303 AddMacroDef(ltMARGINPAR
, "marginpar", 1);
2304 AddMacroDef(ltMBOX
, "mbox", 1);
2305 AddMacroDef(ltMDSERIES
, "mdseries", 1);
2306 AddMacroDef(ltMEMBERSECTION
, "membersection", 1);
2307 AddMacroDef(ltMEMBER
, "member", 2);
2308 AddMacroDef(ltMID
, "mid", 0);
2309 AddMacroDef(ltMODELS
, "models", 0);
2310 AddMacroDef(ltMP
, "mp", 0);
2311 AddMacroDef(ltMULTICOLUMN
, "multicolumn", 3);
2312 AddMacroDef(ltMU
, "mu", 0);
2314 AddMacroDef(ltNABLA
, "nabla", 0);
2315 AddMacroDef(ltNEG
, "neg", 0);
2316 AddMacroDef(ltNEQ
, "neq", 0);
2317 AddMacroDef(ltNEWCOUNTER
, "newcounter", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2318 AddMacroDef(ltNEWLINE
, "newline", 0);
2319 AddMacroDef(ltNEWPAGE
, "newpage", 0);
2320 AddMacroDef(ltNI
, "ni", 0);
2321 AddMacroDef(ltNOCITE
, "nocite", 1);
2322 AddMacroDef(ltNOINDENT
, "noindent", 0);
2323 AddMacroDef(ltNOLINEBREAK
, "nolinebreak", 0);
2324 AddMacroDef(ltNOPAGEBREAK
, "nopagebreak", 0);
2325 AddMacroDef(ltNORMALSIZE
, "normalsize", 1);
2326 AddMacroDef(ltNORMALBOX
, "normalbox", 1);
2327 AddMacroDef(ltNORMALBOXD
, "normalboxd", 1);
2328 AddMacroDef(ltNOTEQ
, "noteq", 0);
2329 AddMacroDef(ltNOTIN
, "notin", 0);
2330 AddMacroDef(ltNOTSUBSET
, "notsubset", 0);
2331 AddMacroDef(ltNU
, "nu", 0);
2333 AddMacroDef(ltODDSIDEMARGIN
, "oddsidemargin", 1);
2334 AddMacroDef(ltOMEGA
, "omega", 0);
2335 AddMacroDef(ltCAP_OMEGA
, "Omega", 0);
2336 AddMacroDef(ltONECOLUMN
, "onecolumn", 0);
2337 AddMacroDef(ltOPLUS
, "oplus", 0);
2338 AddMacroDef(ltOSLASH
, "oslash", 0);
2339 AddMacroDef(ltOTIMES
, "otimes", 0);
2341 AddMacroDef(ltPAGEBREAK
, "pagebreak", 0);
2342 AddMacroDef(ltPAGEREF
, "pageref", 1);
2343 AddMacroDef(ltPAGESTYLE
, "pagestyle", 1);
2344 AddMacroDef(ltPAGENUMBERING
, "pagenumbering", 1);
2345 AddMacroDef(ltPARAGRAPHSTAR
, "paragraph*", 1);
2346 AddMacroDef(ltPARAGRAPH
, "paragraph", 1);
2347 AddMacroDef(ltPARALLEL
, "parallel", 0);
2348 AddMacroDef(ltPARAM
, "param", 2);
2349 AddMacroDef(ltPARINDENT
, "parindent", 1);
2350 AddMacroDef(ltPARSKIP
, "parskip", 1);
2351 AddMacroDef(ltPARTIAL
, "partial", 0);
2352 AddMacroDef(ltPARTSTAR
, "part*", 1);
2353 AddMacroDef(ltPART
, "part", 1);
2354 AddMacroDef(ltPAR
, "par", 0);
2355 AddMacroDef(ltPERP
, "perp", 0);
2356 AddMacroDef(ltPHI
, "phi", 0);
2357 AddMacroDef(ltCAP_PHI
, "Phi", 0);
2358 AddMacroDef(ltPFUNC
, "pfunc", 3);
2359 AddMacroDef(ltPICTURE
, "picture", 1);
2360 AddMacroDef(ltPI
, "pi", 0);
2361 AddMacroDef(ltCAP_PI
, "Pi", 0);
2362 AddMacroDef(ltPM
, "pm", 0);
2363 AddMacroDef(ltPOPREFONLY
, "poprefonly", 1);
2364 AddMacroDef(ltPOPREF
, "popref", 2);
2365 AddMacroDef(ltPOUNDS
, "pounds", 0);
2366 AddMacroDef(ltPREC
, "prec", 0);
2367 AddMacroDef(ltPRECEQ
, "preceq", 0);
2368 AddMacroDef(ltPRINTINDEX
, "printindex", 0);
2369 AddMacroDef(ltPROPTO
, "propto", 0);
2370 AddMacroDef(ltPSBOXTO
, "psboxto", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2371 AddMacroDef(ltPSBOX
, "psbox", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2372 AddMacroDef(ltPSI
, "psi", 0);
2373 AddMacroDef(ltCAP_PSI
, "Psi", 0);
2375 AddMacroDef(ltQUOTE
, "quote", 1);
2376 AddMacroDef(ltQUOTATION
, "quotation", 1);
2378 AddMacroDef(ltRAGGEDBOTTOM
, "raggedbottom", 0);
2379 AddMacroDef(ltRAGGEDLEFT
, "raggedleft", 0);
2380 AddMacroDef(ltRAGGEDRIGHT
, "raggedright", 0);
2381 AddMacroDef(ltRBRACERAW
, "rbraceraw", 0);
2382 AddMacroDef(ltREF
, "ref", 1);
2383 AddMacroDef(ltREGISTERED
, "registered", 0);
2384 AddMacroDef(ltRE
, "we", 0);
2385 AddMacroDef(ltRHO
, "rho", 0);
2386 AddMacroDef(ltRIGHTARROW
, "rightarrow", 0);
2387 AddMacroDef(ltRIGHTARROW2
, "rightarrow2", 0);
2388 AddMacroDef(ltRMFAMILY
, "rmfamily", 1);
2389 AddMacroDef(ltRM
, "rm", 1);
2390 AddMacroDef(ltROMAN
, "roman", 1);
2391 AddMacroDef(ltROMAN2
, "Roman", 1);
2392 // AddMacroDef(lt"row", 1);
2393 AddMacroDef(ltRTFSP
, "rtfsp", 0);
2394 AddMacroDef(ltRTFIGNORE
, "rtfignore", 1);
2395 AddMacroDef(ltRTFONLY
, "rtfonly", 1);
2396 AddMacroDef(ltRULEDROW
, "ruledrow", 1);
2397 AddMacroDef(ltDRULED
, "druled", 1);
2398 AddMacroDef(ltRULE
, "rule", 2);
2399 AddMacroDef(ltRHEAD
, "rhead", 1);
2400 AddMacroDef(ltRFOOT
, "rfoot", 1);
2401 AddMacroDef(ltROW
, "row", 1);
2403 AddMacroDef(ltSCSHAPE
, "scshape", 1);
2404 AddMacroDef(ltSC
, "sc", 1);
2405 AddMacroDef(ltSECTIONHEADING
, "sectionheading", 1);
2406 AddMacroDef(ltSECTIONSTAR
, "section*", 1);
2407 AddMacroDef(ltSECTION
, "section", 1);
2408 AddMacroDef(ltSETCOUNTER
, "setcounter", 2);
2409 AddMacroDef(ltSFFAMILY
, "sffamily", 1);
2410 AddMacroDef(ltSF
, "sf", 1);
2411 AddMacroDef(ltSHARP
, "sharp", 0);
2412 AddMacroDef(ltSHORTCITE
, "shortcite", 1);
2413 AddMacroDef(ltSIGMA
, "sigma", 0);
2414 AddMacroDef(ltCAP_SIGMA
, "Sigma", 0);
2415 AddMacroDef(ltSIM
, "sim", 0);
2416 AddMacroDef(ltSIMEQ
, "simeq", 0);
2417 AddMacroDef(ltSINGLESPACE
, "singlespace", 1);
2418 AddMacroDef(ltSIZEDBOX
, "sizedbox", 2);
2419 AddMacroDef(ltSIZEDBOXD
, "sizedboxd", 2);
2420 AddMacroDef(ltSLOPPYPAR
, "sloppypar", 1);
2421 AddMacroDef(ltSLOPPY
, "sloppy", 0);
2422 AddMacroDef(ltSLSHAPE
, "slshape", 1);
2423 AddMacroDef(ltSL
, "sl", 1);
2424 AddMacroDef(ltSMALL
, "small", 1);
2425 AddMacroDef(ltSMILE
, "smile", 0);
2426 AddMacroDef(ltSS
, "ss", 0);
2427 AddMacroDef(ltSTAR
, "star", 0);
2428 AddMacroDef(ltSUBITEM
, "subitem", 0);
2429 AddMacroDef(ltSUBPARAGRAPHSTAR
, "subparagraph*", 1);
2430 AddMacroDef(ltSUBPARAGRAPH
, "subparagraph", 1);
2431 AddMacroDef(ltSPECIAL
, "special", 1);
2432 AddMacroDef(ltSUBSECTIONSTAR
, "subsection*", 1);
2433 AddMacroDef(ltSUBSECTION
, "subsection", 1);
2434 AddMacroDef(ltSUBSETEQ
, "subseteq", 0);
2435 AddMacroDef(ltSUBSET
, "subset", 0);
2436 AddMacroDef(ltSUCC
, "succ", 0);
2437 AddMacroDef(ltSUCCEQ
, "succeq", 0);
2438 AddMacroDef(ltSUPSETEQ
, "supseteq", 0);
2439 AddMacroDef(ltSUPSET
, "supset", 0);
2440 AddMacroDef(ltSUBSUBSECTIONSTAR
,"subsubsection*", 1);
2441 AddMacroDef(ltSUBSUBSECTION
, "subsubsection", 1);
2442 AddMacroDef(ltSUPERTABULAR
, "supertabular", 2, FALSE
);
2443 AddMacroDef(ltSURD
, "surd", 0);
2444 AddMacroDef(ltSCRIPTSIZE
, "scriptsize", 1);
2445 AddMacroDef(ltSETHEADER
, "setheader", 6);
2446 AddMacroDef(ltSETFOOTER
, "setfooter", 6);
2447 AddMacroDef(ltSETHOTSPOTCOLOUR
, "sethotspotcolour", 1);
2448 AddMacroDef(ltSETHOTSPOTCOLOR
, "sethotspotcolor", 1);
2449 AddMacroDef(ltSETHOTSPOTUNDERLINE
, "sethotspotunderline", 1);
2450 AddMacroDef(ltSETTRANSPARENCY
, "settransparency", 1);
2451 AddMacroDef(ltSPADESUIT
, "spadesuit", 0);
2453 AddMacroDef(ltTABBING
, "tabbing", 2);
2454 AddMacroDef(ltTABLEOFCONTENTS
, "tableofcontents", 0);
2455 AddMacroDef(ltTABLE
, "table", 1);
2456 AddMacroDef(ltTABULAR
, "tabular", 2, FALSE
);
2457 AddMacroDef(ltTAB
, "tab", 0);
2458 AddMacroDef(ltTAU
, "tau", 0);
2459 AddMacroDef(ltTEXTRM
, "textrm", 1);
2460 AddMacroDef(ltTEXTSF
, "textsf", 1);
2461 AddMacroDef(ltTEXTTT
, "texttt", 1);
2462 AddMacroDef(ltTEXTBF
, "textbf", 1);
2463 AddMacroDef(ltTEXTIT
, "textit", 1);
2464 AddMacroDef(ltTEXTSL
, "textsl", 1);
2465 AddMacroDef(ltTEXTSC
, "textsc", 1);
2466 AddMacroDef(ltTEXTWIDTH
, "textwidth", 1);
2467 AddMacroDef(ltTEXTHEIGHT
, "textheight", 1);
2468 AddMacroDef(ltTEXTCOLOUR
, "textcolour", 1);
2469 AddMacroDef(ltTEX
, "TeX", 0);
2470 AddMacroDef(ltTHEBIBLIOGRAPHY
, "thebibliography", 2);
2471 AddMacroDef(ltTHETA
, "theta", 0);
2472 AddMacroDef(ltTIMES
, "times", 0);
2473 AddMacroDef(ltCAP_THETA
, "Theta", 0);
2474 AddMacroDef(ltTITLEPAGE
, "titlepage", 1);
2475 AddMacroDef(ltTITLE
, "title", 1);
2476 AddMacroDef(ltTINY
, "tiny", 1);
2477 AddMacroDef(ltTODAY
, "today", 0);
2478 AddMacroDef(ltTOPMARGIN
, "topmargin", 1);
2479 AddMacroDef(ltTOPSKIP
, "topskip", 1);
2480 AddMacroDef(ltTRIANGLE
, "triangle", 0);
2481 AddMacroDef(ltTTFAMILY
, "ttfamily", 1);
2482 AddMacroDef(ltTT
, "tt", 1);
2483 AddMacroDef(ltTYPEIN
, "typein", 1);
2484 AddMacroDef(ltTYPEOUT
, "typeout", 1);
2485 AddMacroDef(ltTWOCOLWIDTHA
, "twocolwidtha", 1);
2486 AddMacroDef(ltTWOCOLWIDTHB
, "twocolwidthb", 1);
2487 AddMacroDef(ltTWOCOLSPACING
, "twocolspacing", 1);
2488 AddMacroDef(ltTWOCOLITEMRULED
, "twocolitemruled", 2);
2489 AddMacroDef(ltTWOCOLITEM
, "twocolitem", 2);
2490 AddMacroDef(ltTWOCOLLIST
, "twocollist", 1);
2491 AddMacroDef(ltTWOCOLUMN
, "twocolumn", 0);
2492 AddMacroDef(ltTHEPAGE
, "thepage", 0);
2493 AddMacroDef(ltTHECHAPTER
, "thechapter", 0);
2494 AddMacroDef(ltTHESECTION
, "thesection", 0);
2495 AddMacroDef(ltTHISPAGESTYLE
, "thispagestyle", 1);
2497 AddMacroDef(ltUNDERLINE
, "underline", 1);
2498 AddMacroDef(ltUPSILON
, "upsilon", 0);
2499 AddMacroDef(ltCAP_UPSILON
, "Upsilon", 0);
2500 AddMacroDef(ltUPARROW
, "uparrow", 0);
2501 AddMacroDef(ltUPARROW2
, "Uparrow", 0);
2502 AddMacroDef(ltUPPERCASE
, "uppercase", 1);
2503 AddMacroDef(ltUPSHAPE
, "upshape", 1);
2504 AddMacroDef(ltURLREF
, "urlref", 2);
2505 AddMacroDef(ltUSEPACKAGE
, "usepackage", 1);
2507 AddMacroDef(ltVAREPSILON
, "varepsilon", 0);
2508 AddMacroDef(ltVARPHI
, "varphi", 0);
2509 AddMacroDef(ltVARPI
, "varpi", 0);
2510 AddMacroDef(ltVARRHO
, "varrho", 0);
2511 AddMacroDef(ltVARSIGMA
, "varsigma", 0);
2512 AddMacroDef(ltVARTHETA
, "vartheta", 0);
2513 AddMacroDef(ltVDOTS
, "vdots", 0);
2514 AddMacroDef(ltVEE
, "vee", 0);
2515 AddMacroDef(ltVERBATIMINPUT
, "verbatiminput", 1);
2516 AddMacroDef(ltVERBATIM
, "verbatim", 1);
2517 AddMacroDef(ltVERBSTAR
, "verb*", 1);
2518 AddMacroDef(ltVERB
, "verb", 1);
2519 AddMacroDef(ltVERSE
, "verse", 1);
2520 AddMacroDef(ltVFILL
, "vfill", 0);
2521 AddMacroDef(ltVLINE
, "vline", 0);
2522 AddMacroDef(ltVOID
, "void", 0);
2523 AddMacroDef(ltVDASH
, "vdash", 0);
2524 AddMacroDef(ltVRULE
, "vrule", 0);
2525 AddMacroDef(ltVSPACESTAR
, "vspace*", 1);
2526 AddMacroDef(ltVSKIPSTAR
, "vskip*", 1);
2527 AddMacroDef(ltVSPACE
, "vspace", 1);
2528 AddMacroDef(ltVSKIP
, "vskip", 1);
2530 AddMacroDef(ltWEDGE
, "wedge", 0);
2531 AddMacroDef(ltWXCLIPS
, "wxclips", 0);
2532 AddMacroDef(ltWINHELPIGNORE
, "winhelpignore", 1);
2533 AddMacroDef(ltWINHELPONLY
, "winhelponly", 1);
2534 AddMacroDef(ltWP
, "wp", 0);
2536 AddMacroDef(ltXI
, "xi", 0);
2537 AddMacroDef(ltCAP_XI
, "Xi", 0);
2538 AddMacroDef(ltXLPIGNORE
, "xlpignore", 1);
2539 AddMacroDef(ltXLPONLY
, "xlponly", 1);
2541 AddMacroDef(ltZETA
, "zeta", 0);
2543 AddMacroDef(ltSPACE
, " ", 0);
2544 AddMacroDef(ltBACKSLASHCHAR
, "\\", 0);
2545 AddMacroDef(ltPIPE
, "|", 0);
2546 AddMacroDef(ltFORWARDSLASH
, "/", 0);
2547 AddMacroDef(ltUNDERSCORE
, "_", 0);
2548 AddMacroDef(ltAMPERSAND
, "&", 0);
2549 AddMacroDef(ltPERCENT
, "%", 0);
2550 AddMacroDef(ltDOLLAR
, "$", 0);
2551 AddMacroDef(ltHASH
, "#", 0);
2552 AddMacroDef(ltLPARENTH
, "(", 0);
2553 AddMacroDef(ltRPARENTH
, ")", 0);
2554 AddMacroDef(ltLBRACE
, "{", 0);
2555 AddMacroDef(ltRBRACE
, "}", 0);
2556 // AddMacroDef(ltEQUALS, "=", 0);
2557 AddMacroDef(ltRANGLEBRA
, ">", 0);
2558 AddMacroDef(ltLANGLEBRA
, "<", 0);
2559 AddMacroDef(ltPLUS
, "+", 0);
2560 AddMacroDef(ltDASH
, "-", 0);
2561 AddMacroDef(ltAT_SYMBOL
, "@", 0);
2562 // AddMacroDef(ltSINGLEQUOTE, "'", 0);
2563 // AddMacroDef(ltBACKQUOTE, "`", 0);
2567 * Default behaviour, should be called by client if can't match locally.
2571 // Called on start/end of macro examination
2572 void DefaultOnMacro(int macroId
, int no_args
, bool start
)
2576 // Default behaviour for abstract
2581 // Write the heading
2582 FakeCurrentSection(AbstractNameString
);
2583 OnMacro(ltPAR
, 0, TRUE
);
2584 OnMacro(ltPAR
, 0, FALSE
);
2588 if (DocumentStyle
== LATEX_ARTICLE
)
2596 // Default behaviour for glossary
2597 case ltHELPGLOSSARY
:
2601 // Write the heading
2602 FakeCurrentSection(GlossaryNameString
);
2603 OnMacro(ltPAR
, 0, TRUE
);
2604 OnMacro(ltPAR
, 0, FALSE
);
2605 if ((convertMode
== TEX_RTF
) && !winHelp
)
2607 OnMacro(ltPAR
, 0, TRUE
);
2608 OnMacro(ltPAR
, 0, FALSE
);
2613 case ltSPECIALAMPERSAND
:
2620 TexOutput("<<", TRUE
);
2624 TexOutput(">>", TRUE
);
2628 TexOutput("~", TRUE
);
2632 TexOutput("~", TRUE
);
2634 case ltSPECIALTILDE
:
2636 TexOutput(" ", TRUE
);
2640 TexOutput("_", TRUE
);
2644 TexOutput("#", TRUE
);
2648 TexOutput("&", TRUE
);
2652 TexOutput(" ", TRUE
);
2656 TexOutput("|", TRUE
);
2660 TexOutput("%", TRUE
);
2664 TexOutput("$", TRUE
);
2668 TexOutput("", TRUE
);
2672 TexOutput("", TRUE
);
2676 TexOutput("{", TRUE
);
2680 TexOutput("}", TRUE
);
2684 TexOutput("(c)", TRUE
);
2688 TexOutput("(r)", TRUE
);
2692 TexOutput("\\", TRUE
);
2697 TexOutput("...", TRUE
);
2701 TexOutput("|", TRUE
);
2705 TexOutput("LaTeX", TRUE
);
2709 TexOutput("TeX", TRUE
);
2713 TexOutput("£", TRUE
);
2715 case ltSPECIALDOUBLEDOLLAR
: // Interpret as center
2716 OnMacro(ltCENTER
, no_args
, start
);
2722 OnMacro(ltIT
, no_args
, start
);
2725 case ltPARAGRAPHSTAR
:
2726 case ltSUBPARAGRAPH
:
2727 case ltSUBPARAGRAPHSTAR
:
2728 OnMacro(ltSUBSUBSECTION
, no_args
, start
);
2736 TexOutput(ctime(&when
), TRUE
);
2747 if (start
) TexOutput("alpha");
2750 if (start
) TexOutput("beta");
2753 if (start
) TexOutput("gamma");
2756 if (start
) TexOutput("delta");
2760 if (start
) TexOutput("epsilon");
2763 if (start
) TexOutput("zeta");
2766 if (start
) TexOutput("eta");
2770 if (start
) TexOutput("theta");
2773 if (start
) TexOutput("iota");
2776 if (start
) TexOutput("kappa");
2779 if (start
) TexOutput("lambda");
2782 if (start
) TexOutput("mu");
2785 if (start
) TexOutput("nu");
2788 if (start
) TexOutput("xi");
2792 if (start
) TexOutput("pi");
2796 if (start
) TexOutput("rho");
2800 if (start
) TexOutput("sigma");
2803 if (start
) TexOutput("tau");
2806 if (start
) TexOutput("upsilon");
2810 if (start
) TexOutput("phi");
2813 if (start
) TexOutput("chi");
2816 if (start
) TexOutput("psi");
2819 if (start
) TexOutput("omega");
2822 if (start
) TexOutput("GAMMA");
2825 if (start
) TexOutput("DELTA");
2828 if (start
) TexOutput("THETA");
2831 if (start
) TexOutput("LAMBDA");
2834 if (start
) TexOutput("XI");
2837 if (start
) TexOutput("PI");
2840 if (start
) TexOutput("SIGMA");
2843 if (start
) TexOutput("UPSILON");
2846 if (start
) TexOutput("PHI");
2849 if (start
) TexOutput("PSI");
2852 if (start
) TexOutput("OMEGA");
2855 // Binary operation symbols
2858 if (start
) TexOutput("<=");
2861 if (start
) TexOutput("<<");
2864 if (start
) TexOutput("SUBSET");
2867 if (start
) TexOutput("SUBSETEQ");
2870 if (start
) TexOutput("IN");
2873 if (start
) TexOutput("VDASH");
2876 if (start
) TexOutput("MODELS");
2880 if (start
) TexOutput(">=");
2883 if (start
) TexOutput(">>");
2886 if (start
) TexOutput("SUPSET");
2889 if (start
) TexOutput("SUPSETEQ");
2892 if (start
) TexOutput("NI");
2895 if (start
) TexOutput("DASHV");
2898 if (start
) TexOutput("PERP");
2901 if (start
) TexOutput("NEQ");
2904 if (start
) TexOutput("DOTEQ");
2907 if (start
) TexOutput("APPROX");
2910 if (start
) TexOutput("CONG");
2913 if (start
) TexOutput("EQUIV");
2916 if (start
) TexOutput("PROPTO");
2919 if (start
) TexOutput("PREC");
2922 if (start
) TexOutput("PRECEQ");
2925 if (start
) TexOutput("|");
2928 if (start
) TexOutput("~");
2931 if (start
) TexOutput("SIMEQ");
2934 if (start
) TexOutput("ASYMP");
2937 if (start
) TexOutput(":-)");
2940 if (start
) TexOutput(":-(");
2943 if (start
) TexOutput("SUCC");
2946 if (start
) TexOutput("SUCCEQ");
2949 if (start
) TexOutput("|");
2952 // Negated relation symbols
2954 if (start
) TexOutput("!=");
2957 if (start
) TexOutput("NOTIN");
2960 if (start
) TexOutput("NOTSUBSET");
2965 if (start
) TexOutput("<--");
2968 if (start
) TexOutput("<==");
2971 if (start
) TexOutput("-->");
2974 if (start
) TexOutput("==>");
2976 case ltLEFTRIGHTARROW
:
2977 if (start
) TexOutput("<-->");
2979 case ltLEFTRIGHTARROW2
:
2980 if (start
) TexOutput("<==>");
2983 if (start
) TexOutput("UPARROW");
2986 if (start
) TexOutput("UPARROW2");
2989 if (start
) TexOutput("DOWNARROW");
2992 if (start
) TexOutput("DOWNARROW2");
2994 // Miscellaneous symbols
2996 if (start
) TexOutput("ALEPH");
2999 if (start
) TexOutput("WP");
3002 if (start
) TexOutput("RE");
3005 if (start
) TexOutput("IM");
3008 if (start
) TexOutput("EMPTYSET");
3011 if (start
) TexOutput("NABLA");
3014 if (start
) TexOutput("SURD");
3017 if (start
) TexOutput("PARTIAL");
3020 if (start
) TexOutput("BOT");
3023 if (start
) TexOutput("FORALL");
3026 if (start
) TexOutput("EXISTS");
3029 if (start
) TexOutput("NEG");
3032 if (start
) TexOutput("SHARP");
3035 if (start
) TexOutput("ANGLE");
3038 if (start
) TexOutput("TRIANGLE");
3041 if (start
) TexOutput("CLUBSUIT");
3044 if (start
) TexOutput("DIAMONDSUIT");
3047 if (start
) TexOutput("HEARTSUIT");
3050 if (start
) TexOutput("SPADESUIT");
3053 if (start
) TexOutput("INFTY");
3056 if (start
) TexOutput("PM");
3059 if (start
) TexOutput("MP");
3062 if (start
) TexOutput("TIMES");
3065 if (start
) TexOutput("DIV");
3068 if (start
) TexOutput("CDOT");
3071 if (start
) TexOutput("AST");
3074 if (start
) TexOutput("STAR");
3077 if (start
) TexOutput("CAP");
3080 if (start
) TexOutput("CUP");
3083 if (start
) TexOutput("VEE");
3086 if (start
) TexOutput("WEDGE");
3089 if (start
) TexOutput("CIRC");
3092 if (start
) TexOutput("BULLET");
3095 if (start
) TexOutput("DIAMOND");
3098 if (start
) TexOutput("OSLASH");
3101 if (start
) TexOutput("BOX");
3104 if (start
) TexOutput("DIAMOND2");
3106 case ltBIGTRIANGLEDOWN
:
3107 if (start
) TexOutput("BIGTRIANGLEDOWN");
3110 if (start
) TexOutput("OPLUS");
3113 if (start
) TexOutput("OTIMES");
3116 if (start
) TexOutput("s");
3118 case ltBACKSLASHRAW
:
3119 if (start
) TexOutput("\\");
3122 if (start
) TexOutput("{");
3125 if (start
) TexOutput("}");
3129 if (start
) TexOutput(" ");
3136 // Called on start/end of argument examination
3137 bool DefaultOnArgument(int macroId
, int arg_no
, bool start
)
3143 if (arg_no
== 1 && start
)
3145 char *refName
= GetArgData();
3148 TexRef
*texRef
= FindReference(refName
);
3151 // Must strip the 'section' or 'chapter' or 'figure' text
3152 // from a normal 'ref' reference
3154 strcpy(buf
, texRef
->sectionNumber
);
3155 int len
= strlen(buf
);
3157 if (strcmp(buf
, "??") != 0)
3169 TexOutput(texRef
->sectionNumber
+ i
, TRUE
);
3174 informBuf
.Printf("Warning: unresolved reference '%s'", refName
);
3175 OnInform((char *)informBuf
.c_str());
3178 else TexOutput("??", TRUE
);
3190 if (start
&& (arg_no
== 1))
3191 DocumentAuthor
= GetArgChunk();
3197 if (start
&& (arg_no
== 1))
3198 DocumentDate
= GetArgChunk();
3204 if (start
&& (arg_no
== 1))
3205 DocumentTitle
= GetArgChunk();
3209 case ltDOCUMENTCLASS
:
3210 case ltDOCUMENTSTYLE
:
3212 if (start
&& !IsArgOptional())
3214 DocumentStyleString
= copystring(GetArgData());
3215 if (strncmp(DocumentStyleString
, "art", 3) == 0)
3216 DocumentStyle
= LATEX_ARTICLE
;
3217 else if (strncmp(DocumentStyleString
, "rep", 3) == 0)
3218 DocumentStyle
= LATEX_REPORT
;
3219 else if (strncmp(DocumentStyleString
, "book", 4) == 0 ||
3220 strncmp(DocumentStyleString
, "thesis", 6) == 0)
3221 DocumentStyle
= LATEX_BOOK
;
3222 else if (strncmp(DocumentStyleString
, "letter", 6) == 0)
3223 DocumentStyle
= LATEX_LETTER
;
3224 else if (strncmp(DocumentStyleString
, "slides", 6) == 0)
3225 DocumentStyle
= LATEX_SLIDES
;
3227 if (StringMatch("10", DocumentStyleString
))
3229 else if (StringMatch("11", DocumentStyleString
))
3231 else if (StringMatch("12", DocumentStyleString
))
3234 OnMacro(ltHELPFONTSIZE
, 1, TRUE
);
3235 sprintf(currentArgData
, "%d", normalFont
);
3237 OnArgument(ltHELPFONTSIZE
, 1, TRUE
);
3238 OnArgument(ltHELPFONTSIZE
, 1, FALSE
);
3239 haveArgData
= FALSE
;
3240 OnMacro(ltHELPFONTSIZE
, 1, FALSE
);
3242 else if (start
&& IsArgOptional())
3244 MinorDocumentStyleString
= copystring(GetArgData());
3246 if (StringMatch("10", MinorDocumentStyleString
))
3248 else if (StringMatch("11", MinorDocumentStyleString
))
3250 else if (StringMatch("12", MinorDocumentStyleString
))
3256 case ltBIBLIOGRAPHYSTYLE
:
3258 if (start
&& !IsArgOptional())
3259 BibliographyStyleString
= copystring(GetArgData());
3265 if (start
&& !IsArgOptional())
3267 if (PageStyle
) delete[] PageStyle
;
3268 PageStyle
= copystring(GetArgData());
3276 if (start && !IsArgOptional())
3277 LeftHeader = GetArgChunk();
3283 if (start && !IsArgOptional())
3284 LeftFooter = GetArgChunk();
3290 if (start && !IsArgOptional())
3291 CentreHeader = GetArgChunk();
3297 if (start && !IsArgOptional())
3298 CentreFooter = GetArgChunk();
3304 if (start && !IsArgOptional())
3305 RightHeader = GetArgChunk();
3311 if (start && !IsArgOptional())
3312 RightFooter = GetArgChunk();
3320 if (start
&& !IsArgOptional())
3322 char *citeKeys
= GetArgData();
3324 char *citeKey
= ParseMultifieldString(citeKeys
, &pos
);
3327 AddCitation(citeKey
);
3328 TexRef
*ref
= FindReference(citeKey
);
3331 TexOutput(ref
->sectionNumber
, TRUE
);
3332 if (strcmp(ref
->sectionNumber
, "??") == 0)
3335 informBuf
.Printf("Warning: unresolved citation %s.", citeKey
);
3336 OnInform((char *)informBuf
.c_str());
3339 citeKey
= ParseMultifieldString(citeKeys
, &pos
);
3342 TexOutput(", ", TRUE
);
3351 if (start
&& !IsArgOptional())
3353 char *citeKey
= GetArgData();
3354 AddCitation(citeKey
);
3359 case ltHELPFONTSIZE
:
3363 char *data
= GetArgData();
3364 if (strcmp(data
, "10") == 0)
3366 else if (strcmp(data
, "11") == 0)
3368 else if (strcmp(data
, "12") == 0)
3378 TexOutput(" ??", TRUE
);
3385 if (start
&& arg_no
== 1)
3387 char *data
= GetArgData();
3388 ParSkip
= ParseUnitArgument(data
);
3395 if (start
&& arg_no
== 1)
3397 char *data
= GetArgData();
3398 ParIndent
= ParseUnitArgument(data
);
3405 return OnArgument(ltIT
, arg_no
, start
);
3408 case ltSPECIALDOUBLEDOLLAR
:
3410 return OnArgument(ltCENTER
, arg_no
, start
);
3414 case ltPARAGRAPHSTAR
:
3415 case ltSUBPARAGRAPH
:
3416 case ltSUBPARAGRAPHSTAR
:
3418 return OnArgument(ltSUBSUBSECTION
, arg_no
, start
);
3424 OnInform(GetArgData());
3430 TexOutput(" (", TRUE
);
3432 TexOutput(")", TRUE
);
3435 case ltBIBLIOGRAPHY
:
3443 if ((fd
= fopen(TexBibName
, "r")))
3449 TexOutput(smallBuf
);
3457 OnInform("Run Tex2RTF again to include bibliography.");
3460 // Read in the .bib file, resolve all known references, write out the RTF.
3461 char *allFiles
= GetArgData();
3463 char *bibFile
= ParseMultifieldString(allFiles
, &pos
);
3467 strcpy(fileBuf
, bibFile
);
3468 wxString actualFile
= TexPathList
.FindValidPath(fileBuf
);
3469 if (actualFile
== "")
3471 strcat(fileBuf
, ".bib");
3472 actualFile
= TexPathList
.FindValidPath(fileBuf
);
3474 if (actualFile
!= "")
3476 if (!ReadBib((char*) (const char*) actualFile
))
3479 errBuf
.Printf(".bib file %s not found or malformed", (const char*) actualFile
);
3480 OnError((char *)errBuf
.c_str());
3486 errBuf
.Printf(".bib file %s not found", fileBuf
);
3487 OnError((char *)errBuf
.c_str());
3489 bibFile
= ParseMultifieldString(allFiles
, &pos
);
3492 ResolveBibReferences();
3494 // Write it a new bib section in the appropriate format.
3495 FILE *save1
= CurrentOutput1
;
3496 FILE *save2
= CurrentOutput2
;
3497 FILE *Biblio
= fopen(TexTmpBibName
, "w");
3498 SetCurrentOutput(Biblio
);
3501 if (wxFileExists(TexTmpBibName
))
3503 if (wxFileExists(TexBibName
)) wxRemoveFile(TexBibName
);
3504 wxRenameFile(TexTmpBibName
, TexBibName
);
3506 SetCurrentOutputs(save1
, save2
);
3513 if (start
&& (arg_no
== 3))
3523 if (start
&& (arg_no
== 1))
3525 char *s
= GetArgData();
3528 char *s1
= copystring(s
);
3530 for (i
= 0; i
< (int)strlen(s
); i
++)
3531 s1
[i
] = toupper(s
[i
]);
3544 if (start
&& (arg_no
== 1))
3546 char *s
= GetArgData();
3549 char *s1
= copystring(s
);
3551 for (i
= 0; i
< (int)strlen(s
); i
++)
3552 s1
[i
] = tolower(s
[i
]);
3565 if (start
&& (arg_no
== 1))
3567 char *s
= GetArgData();
3570 char *s1
= copystring(s
);
3572 for (i
= 0; i
< (int)strlen(s
); i
++)
3573 s1
[i
] = toupper(s
[i
]);
3584 case ltPOPREF
: // Ignore second argument by default
3586 if (start
&& (arg_no
== 1))
3596 return ((convertMode
== TEX_XLP
) ? FALSE
: TRUE
);
3599 return ((convertMode
!= TEX_XLP
) ? FALSE
: TRUE
);
3602 return ((convertMode
== TEX_HTML
) ? FALSE
: TRUE
);
3605 return ((convertMode
!= TEX_HTML
) ? FALSE
: TRUE
);
3608 return (((convertMode
== TEX_RTF
) && !winHelp
) ? FALSE
: TRUE
);
3611 return (!((convertMode
== TEX_RTF
) && !winHelp
) ? FALSE
: TRUE
);
3613 case ltWINHELPIGNORE
:
3614 return (winHelp
? FALSE
: TRUE
);
3617 return (!winHelp
? FALSE
: TRUE
);
3632 case ltADDTOCOUNTER
:
3633 case ltADDCONTENTSLINE
:
3637 case ltBASELINESKIP
:
3646 case ltPAGENUMBERING
:
3658 case ltTHISPAGESTYLE
:
3661 case ltEVENSIDEMARGIN
:
3662 case ltODDSIDEMARGIN
:
3664 case ltMARGINPARWIDTH
:
3665 case ltMARGINPARSEP
:
3666 case ltMARGINPAREVEN
:
3667 case ltMARGINPARODD
:
3668 case ltTWOCOLWIDTHA
:
3669 case ltTWOCOLWIDTHB
:
3670 case ltTWOCOLSPACING
:
3677 case ltSETHOTSPOTCOLOUR
:
3678 case ltSETHOTSPOTCOLOR
:
3679 case ltSETHOTSPOTUNDERLINE
:
3680 case ltSETTRANSPARENCY
:
3683 case ltBACKGROUNDCOLOUR
:
3684 case ltBACKGROUNDIMAGE
:
3686 case ltFOLLOWEDLINKCOLOUR
:
3693 case ltINSERTATLEVEL
:
3697 case ltSUPERTABULAR
:
3706 if (arg_no
== 2) return TRUE
;
3713 if (arg_no
== 2) return TRUE
;
3717 case ltDEFINECOLOUR
:
3720 static int redVal
= 0;
3721 static int greenVal
= 0;
3722 static int blueVal
= 0;
3723 static char *colourName
= NULL
;
3730 if (colourName
) delete[] colourName
;
3731 colourName
= copystring(GetArgData());
3736 redVal
= atoi(GetArgData());
3741 greenVal
= atoi(GetArgData());
3746 blueVal
= atoi(GetArgData());
3747 AddColour(colourName
, redVal
, greenVal
, blueVal
);
3763 if (IsArgOptional())