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 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 bool useHeadingStyles
= TRUE
; // Insert \s1, s2 etc.
133 bool useWord
= TRUE
; // Insert proper Word table of contents, etc etc
134 int contentsDepth
= 4; // Depth of Word table of contents
135 bool indexSubsections
= TRUE
; // Index subsections in linear RTF
136 // Linear RTF method of including bitmaps. Can be "includepicture", "hex"
137 char *bitmapMethod
= copystring("includepicture");
138 bool upperCaseNames
= FALSE
;
139 // HTML background and text colours
140 char *backgroundImageString
= NULL
;
141 char *backgroundColourString
= copystring("255;255;255");
142 char *textColourString
= NULL
;
143 char *linkColourString
= NULL
;
144 char *followedLinkColourString
= NULL
;
145 bool combineSubSections
= FALSE
;
146 bool htmlWorkshopFiles
= FALSE
;
148 extern int passNumber
;
150 extern wxHashTable TexReferences
;
153 * International support
156 // Names to help with internationalisation
157 char *ContentsNameString
= copystring("Contents");
158 char *AbstractNameString
= copystring("Abstract");
159 char *GlossaryNameString
= copystring("Glossary");
160 char *ReferencesNameString
= copystring("References");
161 char *FiguresNameString
= copystring("List of Figures");
162 char *TablesNameString
= copystring("List of Tables");
163 char *FigureNameString
= copystring("Figure");
164 char *TableNameString
= copystring("Table");
165 char *IndexNameString
= copystring("Index");
166 char *ChapterNameString
= copystring("chapter");
167 char *SectionNameString
= copystring("section");
168 char *SubsectionNameString
= copystring("subsection");
169 char *SubsubsectionNameString
= copystring("subsubsection");
170 char *UpNameString
= copystring("Up");
179 int subsectionNo
= 0;
180 int subsubsectionNo
= 0;
189 FILE *CurrentOutput1
= NULL
;
190 FILE *CurrentOutput2
= NULL
;
194 int CurrentInputIndex
= 0;
196 char *TexFileRoot
= NULL
;
197 char *TexBibName
= NULL
; // Bibliography output file name
198 char *TexTmpBibName
= NULL
; // Temporary bibliography output file name
199 bool isSync
= FALSE
; // If TRUE, should not yield to other processes.
200 bool stopRunning
= FALSE
; // If TRUE, should abort.
202 static int currentColumn
= 0;
203 char *currentArgData
= NULL
;
204 bool haveArgData
= FALSE
; // If TRUE, we're simulating the data.
205 TexChunk
*currentArgument
= NULL
;
206 TexChunk
*nextChunk
= NULL
;
207 bool isArgOptional
= FALSE
;
210 TexChunk
*TopLevel
= NULL
;
211 // wxList MacroDefs(wxKEY_STRING);
212 wxHashTable
MacroDefs(wxKEY_STRING
);
213 wxStringList IgnorableInputFiles
; // Ignorable \input files, e.g. psbox.tex
214 char *BigBuffer
= NULL
; // For reading in large chunks of text
215 TexMacroDef
*SoloBlockDef
= NULL
;
216 TexMacroDef
*VerbatimMacroDef
= NULL
;
218 #define IncrementLineNumber() LineNumbers[CurrentInputIndex] ++
221 TexRef::TexRef(char *label
, char *file
, char *section
, char *sectionN
)
223 refLabel
= copystring(label
);
224 refFile
= file
? copystring(file
) : (char*) NULL
;
225 sectionNumber
= section
? copystring(section
) : copystring("??");
226 sectionName
= sectionN
? copystring(sectionN
) : copystring("??");
229 TexRef::~TexRef(void)
231 delete [] refLabel
; refLabel
= NULL
;
232 delete [] refFile
; refFile
= NULL
;
233 delete [] sectionNumber
; sectionNumber
= NULL
;
234 delete [] sectionName
; sectionName
= NULL
;
238 CustomMacro::~CustomMacro()
246 void TexOutput(char *s
, bool ordinaryText
)
250 // Update current column, but only if we're guaranteed to
251 // be ordinary text (not mark-up stuff)
254 for (i
= 0; i
< len
; i
++)
256 if (s
[i
] == 13 || s
[i
] == 10)
263 fprintf(CurrentOutput1
, "%s", s
);
265 fprintf(CurrentOutput2
, "%s", s
);
269 * Try to find a Latex macro, in one of the following forms:
270 * (1) \begin{} ... \end{}
271 * (2) \macroname{arg1}...{argn}
275 void ForbidWarning(TexMacroDef
*def
)
278 switch (def
->forbidden
)
282 sprintf(buf
, "Warning: it is recommended that command %s is not used.", def
->name
);
286 case FORBID_ABSOLUTELY
:
288 sprintf(buf
, "Error: command %s cannot be used and will lead to errors.", def
->name
);
297 TexMacroDef
*MatchMacro(char *buffer
, int *pos
, char **env
, bool *parseToBrace
)
299 *parseToBrace
= TRUE
;
301 TexMacroDef
*def
= NULL
;
304 // First, try to find begin{thing}
305 if (strncmp(buffer
+i
, "begin{", 6) == 0)
310 while ((isalpha(buffer
[j
]) || buffer
[j
] == '*') && ((j
- i
) < 39))
312 macroBuf
[j
-i
] = buffer
[j
];
316 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
320 *pos
= j
+ 1; // BUGBUG Should this be + 1???
328 // Failed, so try to find macro from definition list
331 // First try getting a one-character macro, but ONLY
332 // if these TWO characters are not both alphabetical (could
333 // be a longer macro)
334 if (!(isalpha(buffer
[i
]) && isalpha(buffer
[i
+1])))
336 macroBuf
[0] = buffer
[i
];
339 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
345 while ((isalpha(buffer
[j
]) || buffer
[j
] == '*') && ((j
- i
) < 39))
347 macroBuf
[j
-i
] = buffer
[j
];
351 def
= (TexMacroDef
*)MacroDefs
.Get(macroBuf
);
358 // We want to check whether this is a space-consuming macro
360 // No brace, e.g. \input thing.tex instead of \input{thing};
361 // or a numeric argument, such as \parindent0pt
362 if ((def
->no_args
> 0) && ((buffer
[i
] == 32) || (buffer
[i
] == '=') || (isdigit(buffer
[i
]))))
364 if ((buffer
[i
] == 32) || (buffer
[i
] == '='))
367 *parseToBrace
= FALSE
;
376 void EatWhiteSpace(char *buffer
, int *pos
)
378 int len
= strlen(buffer
);
380 bool keepGoing
= TRUE
;
381 bool moreLines
= TRUE
;
382 while ((j
< len
) && keepGoing
&&
383 (buffer
[j
] == 10 || buffer
[j
] == 13 || buffer
[j
] == ' ' || buffer
[j
] == 9))
390 moreLines
= read_a_line(buffer
);
391 len
= strlen(buffer
);
401 bool FindEndEnvironment(char *buffer
, int *pos
, char *env
)
405 // Try to find end{thing}
406 if ((strncmp(buffer
+i
, "end{", 4) == 0) &&
407 (strncmp(buffer
+i
+4, env
, strlen(env
)) == 0))
409 *pos
= i
+ 5 + strlen(env
);
415 bool readingVerbatim
= FALSE
;
416 bool readInVerbatim
= FALSE
; // Within a verbatim, but not nec. verbatiminput
418 // Switched this off because e.g. \verb${$ causes it to fail. There is no
419 // detection of \verb yet.
420 // #define CHECK_BRACES 1
422 unsigned long leftCurley
= 0;
423 unsigned long rightCurley
= 0;
424 static wxString currentFileName
= "";
426 bool read_a_line(char *buf
)
428 if (CurrentInputIndex
< 0)
438 while (ch
!= EOF
&& ch
!= 10)
440 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
443 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
444 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
445 OnError((char *)errBuf
.c_str());
449 if (((bufIndex
== 14) && (strncmp(buf
, "\\end{verbatim}", 14) == 0)) ||
450 ((bufIndex
== 16) && (strncmp(buf
, "\\end{toocomplex}", 16) == 0)))
451 readInVerbatim
= FALSE
;
453 ch
= getc(Inputs
[CurrentInputIndex
]);
455 if (checkCurleyBraces
)
457 if (ch
== '{' && !readInVerbatim
)
459 if (ch
== '}' && !readInVerbatim
)
462 if (rightCurley
> leftCurley
)
465 errBuf
.Printf("An extra right Curley brace ('}') was detected at line %lu inside file %s",LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
466 OnError((char *)errBuf
.c_str());
468 // Reduce the count of right Curley braces, so the mismatched count
469 // isn't reported on every line that has a '}' after the first mismatch
477 // Check for 2 consecutive newlines and replace with \par
478 if (ch
== 10 && !readInVerbatim
)
480 int ch1
= getc(Inputs
[CurrentInputIndex
]);
481 if ((ch1
== 10) || (ch1
== 13))
483 // Eliminate newline (10) following DOS linefeed
485 ch1
= getc(Inputs
[CurrentInputIndex
]);
487 IncrementLineNumber();
488 // strcat(buf, "\\par\n");
490 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
493 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
494 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
495 OnError((char *)errBuf
.c_str());
498 strcat(buf
, "\\par");
504 ungetc(ch1
, Inputs
[CurrentInputIndex
]);
505 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
508 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
509 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
510 OnError((char *)errBuf
.c_str());
521 // Convert embedded characters to RTF equivalents
530 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
533 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
534 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
535 OnError((char *)errBuf
.c_str());
538 buf
[bufIndex
++]='\\';
543 case 0xf6:buf
[bufIndex
++]='o';break; // ö
544 case 0xe4:buf
[bufIndex
++]='a';break; // ä
545 case 0xfc:buf
[bufIndex
++]='u';break; // ü
546 case 0xd6:buf
[bufIndex
++]='O';break; // Ö
547 case 0xc4:buf
[bufIndex
++]='A';break; // Ä
548 case 0xdc:buf
[bufIndex
++]='U';break; // Ü
553 if (bufIndex
+5 >= MAX_LINE_BUFFER_SIZE
)
556 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
557 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
558 OnError((char *)errBuf
.c_str());
561 buf
[bufIndex
++]='\\';
564 buf
[bufIndex
++]='\\';
568 if (bufIndex
>= MAX_LINE_BUFFER_SIZE
)
571 errBuf
.Printf("Line %lu of file %s is too long. Lines can be no longer than %lu characters. Truncated.",
572 LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str(),MAX_LINE_BUFFER_SIZE
);
573 OnError((char *)errBuf
.c_str());
576 // If the current character read in is a '_', we need to check
577 // whether there should be a '\' before it or not
580 buf
[bufIndex
++] = ch
;
586 // There should NOT be a '\' before the '_'
587 if ((bufIndex
> 0 && (buf
[bufIndex
-1] == '\\')) && (buf
[0] != '%'))
590 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());
591 OnError((char *)errBuf
.c_str());
596 // There should be a '\' before the '_'
600 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());
601 OnError((char *)errBuf
.c_str());
603 else if ((buf
[bufIndex
-1] != '\\') && (buf
[0] != '%')) // If it is a comment line, then no warnings
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());
610 buf
[bufIndex
++] = ch
;
618 fclose(Inputs
[CurrentInputIndex
]);
619 Inputs
[CurrentInputIndex
] = NULL
;
620 if (CurrentInputIndex
> 0)
621 ch
= ' '; // No real end of file
622 CurrentInputIndex
--;
624 if (checkCurleyBraces
)
626 if (leftCurley
!= rightCurley
)
629 errBuf
.Printf("Curley braces do not match inside file %s\n%lu opens, %lu closes", (const char*) currentFileName
.c_str(),leftCurley
,rightCurley
);
630 OnError((char *)errBuf
.c_str());
638 readingVerbatim
= FALSE
;
639 readInVerbatim
= FALSE
;
640 strcat(buf
, "\\end{verbatim}\n");
645 IncrementLineNumber();
649 // Strip out comment environment
650 if (strncmp(buf
, "\\begin{comment}", 15) == 0)
652 while (strncmp(buf
, "\\end{comment}", 13) != 0)
654 return read_a_line(buf
);
656 // Read a verbatim input file as if it were a verbatim environment
657 else if (strncmp(buf
, "\\verbatiminput", 14) == 0)
660 char *fileName
= buf
+ wordLen
+ 1;
662 int j
= bufIndex
- 1;
665 // thing}\par -- eliminate the \par!
666 if (strncmp((buf
+ strlen(buf
)-5), "\\par", 4) == 0)
673 buf
[j
-1] = 0; // Ignore final brace
675 wxString actualFile
= TexPathList
.FindValidPath(fileName
);
676 currentFileName
= actualFile
;
677 if (actualFile
== "")
680 errBuf
.Printf("Could not find file: %s",fileName
);
681 OnError((char *)errBuf
.c_str());
686 informStr
.Printf("Processing: %s",actualFile
.c_str());
687 OnInform((char *)informStr
.c_str());
688 CurrentInputIndex
++;
690 Inputs
[CurrentInputIndex
] = fopen(actualFile
, "r");
691 LineNumbers
[CurrentInputIndex
] = 1;
692 if (FileNames
[CurrentInputIndex
])
693 delete[] FileNames
[CurrentInputIndex
];
694 FileNames
[CurrentInputIndex
] = copystring(actualFile
);
696 if (!Inputs
[CurrentInputIndex
])
698 CurrentInputIndex
--;
699 OnError("Could not open verbatiminput file.");
703 readingVerbatim
= TRUE
;
704 readInVerbatim
= TRUE
;
705 strcpy(buf
, "\\begin{verbatim}\n");
711 else if (strncmp(buf
, "\\input", 6) == 0 || strncmp(buf
, "\\helpinput", 10) == 0 ||
712 strncmp(buf
, "\\include", 8) == 0)
715 if (strncmp(buf
, "\\input", 6) == 0)
718 if (strncmp(buf
, "\\include", 8) == 0)
723 char *fileName
= buf
+ wordLen
+ 1;
725 int j
= bufIndex
- 1;
728 // \input{thing}\par -- eliminate the \par!
729 // if (strncmp((buf + strlen(buf)-5), "\\par", 4) == 0)
730 if (strncmp((buf
+ strlen(buf
)-4), "\\par", 4) == 0) // Bug fix 8/2/95 Ulrich Leodolter
738 buf
[j
-1] = 0; // Ignore final brace
740 // Remove backslashes from name
741 wxString
fileNameStr(fileName
);
742 fileNameStr
.Replace("\\", "");
744 // Ignore some types of input files (e.g. macro definition files)
745 char *fileOnly
= FileNameFromPath((char*) (const char*) fileNameStr
);
746 currentFileName
= fileOnly
;
747 if (IgnorableInputFiles
.Member(fileOnly
))
748 return read_a_line(buf
);
750 wxString actualFile
= TexPathList
.FindValidPath(fileNameStr
);
751 if (actualFile
== "")
754 sprintf(buf2
, "%s.tex", (const char*) fileNameStr
);
755 actualFile
= TexPathList
.FindValidPath(buf2
);
757 currentFileName
= actualFile
;
759 if (actualFile
== "")
762 errBuf
.Printf("Could not find file: %s",fileName
);
763 OnError((char *)errBuf
.c_str());
767 // Ensure that if this file includes another,
768 // then we look in the same directory as this one.
769 TexPathList
.EnsureFileAccessible(actualFile
);
772 informStr
.Printf("Processing: %s",actualFile
.c_str());
773 OnInform((char *)informStr
.c_str());
774 CurrentInputIndex
++;
776 Inputs
[CurrentInputIndex
] = fopen(actualFile
, "r");
777 LineNumbers
[CurrentInputIndex
] = 1;
778 if (FileNames
[CurrentInputIndex
])
779 delete[] FileNames
[CurrentInputIndex
];
780 FileNames
[CurrentInputIndex
] = copystring(actualFile
);
782 if (!Inputs
[CurrentInputIndex
])
785 errBuf
.Printf("Could not open include file %s", (const char*) actualFile
);
786 CurrentInputIndex
--;
787 OnError((char *)errBuf
.c_str());
790 bool succ
= read_a_line(buf
);
796 wxString bufStr
= buf
;
799 for (index
=0; syntaxTokens
[index
] != wxEmptyString
; index
++)
801 pos
= bufStr
.find(syntaxTokens
[index
]);
802 if (pos
!= wxString::npos
&& pos
!= 0)
804 size_t commentStart
= bufStr
.find("%");
805 if (commentStart
== wxString::npos
|| commentStart
> pos
)
808 if (syntaxTokens
[index
] == "\\verb")
810 errBuf
.Printf("'%s$....$' was detected at line %lu inside file %s. Please replace this form with \\tt{....}",
811 syntaxTokens
[index
], LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
815 errBuf
.Printf("'%s' was detected at line %lu inside file %s that is not the only text on the line, starting at column one.",
816 syntaxTokens
[index
], LineNumbers
[CurrentInputIndex
], (const char*) currentFileName
.c_str());
818 OnError((char *)errBuf
.c_str());
824 if (strncmp(buf
, "\\begin{verbatim}", 16) == 0 ||
825 strncmp(buf
, "\\begin{toocomplex}", 18) == 0)
826 readInVerbatim
= TRUE
;
827 else if (strncmp(buf
, "\\end{verbatim}", 14) == 0 ||
828 strncmp(buf
, "\\end{toocomplex}", 16) == 0)
829 readInVerbatim
= FALSE
;
831 if (checkCurleyBraces
)
833 if (ch
== EOF
&& leftCurley
!= rightCurley
)
836 errBuf
.Printf("Curley braces do not match inside file %s\n%lu opens, %lu closes", (const char*) currentFileName
.c_str(),leftCurley
,rightCurley
);
837 OnError((char *)errBuf
.c_str());
849 bool ParseNewCommand(char *buffer
, int *pos
)
851 if ((strncmp((buffer
+(*pos
)), "newcommand", 10) == 0) ||
852 (strncmp((buffer
+(*pos
)), "renewcommand", 12) == 0))
854 if (strncmp((buffer
+(*pos
)), "newcommand", 10) == 0)
859 char commandName
[100];
860 char commandValue
[1000];
863 while (buffer
[*pos
] != '}' && (buffer
[*pos
] != 0))
865 commandName
[i
] = buffer
[*pos
];
872 if (buffer
[*pos
] == '[')
875 noArgs
= (int)(buffer
[*pos
]) - 48;
876 *pos
+= 2; // read past argument and '['
882 char ch
= buffer
[*pos
];
893 if (!read_a_line(buffer
))
898 commandValue
[i
] = ch
;
904 CustomMacro
*macro
= new CustomMacro(commandName
, noArgs
, NULL
);
905 if (strlen(commandValue
) > 0)
906 macro
->macroBody
= copystring(commandValue
);
907 if (!CustomMacroList
.Find(commandName
))
909 CustomMacroList
.Append(commandName
, macro
);
910 AddMacroDef(ltCUSTOM_MACRO
, commandName
, noArgs
);
917 void MacroError(char *buffer
)
924 while (((ch
= buffer
[i
-1]) != '\n') && (ch
!= 0))
933 errBuf
.Printf("Could not find macro: %s at line %d, file %s",
934 macroBuf
, (int)(LineNumbers
[CurrentInputIndex
]-1), FileNames
[CurrentInputIndex
]);
935 OnError((char *)errBuf
.c_str());
940 * 'environment' specifies the name of the macro IFF if we're looking for the end
941 * of an environment, e.g. \end{itemize}. Otherwise it's NULL.
942 * 'parseToBrace' is TRUE if the argument should extend to the next right brace,
943 * e.g. in {\bf an argument} as opposed to \vskip 30pt
946 int ParseArg(TexChunk
*thisArg
, wxList
& children
, char *buffer
, int pos
, char *environment
, bool parseToBrace
, TexChunk
*customMacroArgs
)
949 if (stopRunning
) return pos
;
958 // Consume leading brace or square bracket, but ONLY if not following
959 // a space, because this could be e.g. {\large {\bf thing}} where {\bf thing}
960 // is the argument of \large AS WELL as being a block in its
964 if ((pos > 0) && (buffer[pos-1] != ' ') && buffer[pos] == '{')
968 if ((pos > 0) && (buffer[pos-1] != ' ') && (buffer[pos] == '[' || buffer[pos] == '('))
973 else if ((pos > 1) && (buffer[pos-1] != ' ') && (buffer[pos+1] == '[' || buffer[pos+1] == '('))
981 // If not parsing to brace, just read the next word
982 // (e.g. \vskip 20pt)
985 int ch
= buffer
[pos
];
986 while (!eof
&& ch
!= 13 && ch
!= 32 && ch
!= 10 &&
987 ch
!= 0 && ch
!= '{')
989 BigBuffer
[buf_ptr
] = ch
;
996 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
997 BigBuffer
[buf_ptr
] = 0;
999 chunk
->value
= copystring(BigBuffer
);
1000 children
.Append((wxObject
*)chunk
);
1007 len
= strlen(buffer
);
1010 if (customMacroArgs
) return 0;
1012 eof
= read_a_line(buffer
);
1014 len
= strlen(buffer
);
1015 // Check for verbatim (or toocomplex, which comes to the same thing)
1016 wxString bufStr
= buffer
;
1017 // if (bufStr.find("\\begin{verbatim}") != wxString::npos ||
1018 // bufStr.find("\\begin{toocomplex}") != wxString::npos)
1019 if (strncmp(buffer
, "\\begin{verbatim}", 16) == 0 ||
1020 strncmp(buffer
, "\\begin{toocomplex}", 18) == 0)
1024 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1025 BigBuffer
[buf_ptr
] = 0;
1027 chunk
->value
= copystring(BigBuffer
);
1028 children
.Append((wxObject
*)chunk
);
1033 eof
= read_a_line(buffer
);
1034 while (!eof
&& (strncmp(buffer
, "\\end{verbatim}", 14) != 0) &&
1035 (strncmp(buffer
, "\\end{toocomplex}", 16) != 0)
1038 strcat(BigBuffer
, buffer
);
1039 buf_ptr
+= strlen(buffer
);
1040 eof
= read_a_line(buffer
);
1042 eof
= read_a_line(buffer
);
1045 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, VerbatimMacroDef
);
1047 chunk
->macroId
= ltVERBATIM
;
1048 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, VerbatimMacroDef
);
1050 arg
->macroId
= ltVERBATIM
;
1051 TexChunk
*str
= new TexChunk(CHUNK_TYPE_STRING
);
1052 str
->value
= copystring(BigBuffer
);
1054 children
.Append((wxObject
*)chunk
);
1055 chunk
->children
.Append((wxObject
*)arg
);
1056 arg
->children
.Append((wxObject
*)str
);
1058 // Also want to include the following newline (is always a newline
1059 // after a verbatim): EXCEPT in HTML
1060 if (convertMode
!= TEX_HTML
)
1062 TexMacroDef
*parDef
= (TexMacroDef
*)MacroDefs
.Get("\\");
1063 TexChunk
*parChunk
= new TexChunk(CHUNK_TYPE_MACRO
, parDef
);
1064 parChunk
->no_args
= 0;
1065 parChunk
->macroId
= ltBACKSLASHCHAR
;
1066 children
.Append((wxObject
*)parChunk
);
1071 char ch
= buffer
[pos
];
1072 // End of optional argument -- pretend it's right brace for simplicity
1073 if (thisArg
->optional
&& (ch
== ']'))
1079 case '}': // End of argument
1083 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1084 BigBuffer
[buf_ptr
] = 0;
1086 chunk
->value
= copystring(BigBuffer
);
1087 children
.Append((wxObject
*)chunk
);
1089 if (ch
== '}') pos
++;
1095 if (buf_ptr
> 0) // Finish off the string we've read so far
1097 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1098 BigBuffer
[buf_ptr
] = 0;
1100 chunk
->value
= copystring(BigBuffer
);
1101 children
.Append((wxObject
*)chunk
);
1105 // Try matching \end{environment}
1106 if (environment
&& FindEndEnvironment(buffer
, &pos
, environment
))
1108 // Eliminate newline after an \end{} if possible
1109 if (buffer
[pos
] == 13)
1112 if (buffer
[pos
] == 10)
1118 if (ParseNewCommand(buffer
, &pos
))
1121 if (strncmp(buffer
+pos
, "special", 7) == 0)
1134 int ch
= buffer
[pos
];
1156 else if (ch
== '\\' && buffer
[pos
+1] == '}')
1162 else if (ch
== '\\' && buffer
[pos
+1] == '{')
1177 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1179 chunk
->macroId
= ltSPECIAL
;
1180 TexMacroDef
*specialDef
= (TexMacroDef
*)MacroDefs
.Get("special");
1181 chunk
->def
= specialDef
;
1182 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, specialDef
);
1183 chunk
->children
.Append((wxObject
*)arg
);
1185 arg
->macroId
= chunk
->macroId
;
1187 // The value in the first argument.
1188 TexChunk
*argValue
= new TexChunk(CHUNK_TYPE_STRING
);
1189 arg
->children
.Append((wxObject
*)argValue
);
1191 argValue
->value
= copystring(wxBuffer
);
1193 children
.Append((wxObject
*)chunk
);
1195 else if (strncmp(buffer
+pos
, "verb", 4) == 0)
1198 if (buffer
[pos
] == '*')
1201 // Find the delimiter character
1202 int ch
= buffer
[pos
];
1204 // Now at start of verbatim text
1206 while ((buffer
[pos
] != ch
) && buffer
[pos
] != 0)
1208 char *val
= new char[pos
- j
+ 1];
1210 for (i
= j
; i
< pos
; i
++)
1212 val
[i
-j
] = buffer
[i
];
1218 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1220 chunk
->macroId
= ltVERB
;
1221 TexMacroDef
*verbDef
= (TexMacroDef
*)MacroDefs
.Get("verb");
1222 chunk
->def
= verbDef
;
1223 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, verbDef
);
1224 chunk
->children
.Append((wxObject
*)arg
);
1226 arg
->macroId
= chunk
->macroId
;
1228 // The value in the first argument.
1229 TexChunk
*argValue
= new TexChunk(CHUNK_TYPE_STRING
);
1230 arg
->children
.Append((wxObject
*)argValue
);
1232 argValue
->value
= val
;
1234 children
.Append((wxObject
*)chunk
);
1239 bool tmpParseToBrace
= TRUE
;
1240 TexMacroDef
*def
= MatchMacro(buffer
, &pos
, &env
, &tmpParseToBrace
);
1243 CustomMacro
*customMacro
= FindCustomMacro(def
->name
);
1245 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, def
);
1246 chunk
->no_args
= def
->no_args
;
1247 // chunk->name = copystring(def->name);
1248 chunk
->macroId
= def
->macroId
;
1251 children
.Append((wxObject
*)chunk
);
1253 // Eliminate newline after a \begin{} or a \\ if possible
1254 if (env
|| strcmp(def
->name
, "\\") == 0)
1255 if (buffer
[pos
] == 13)
1258 if (buffer
[pos
] == 10)
1262 pos
= ParseMacroBody(def
->name
, chunk
, chunk
->no_args
,
1263 buffer
, pos
, env
, tmpParseToBrace
, customMacroArgs
);
1265 // If custom macro, parse the body substituting the above found args.
1268 if (customMacro
->macroBody
)
1271 // strcpy(macroBuf, "{");
1272 strcpy(macroBuf
, customMacro
->macroBody
);
1273 strcat(macroBuf
, "}");
1274 ParseArg(thisArg
, children
, macroBuf
, 0, NULL
, TRUE
, chunk
);
1277 // delete chunk; // Might delete children
1282 MacroError(buffer
+pos
);
1287 // Parse constructs like {\bf thing} as if they were
1292 if (buffer
[pos
] == '\\')
1296 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1297 BigBuffer
[buf_ptr
] = 0;
1299 chunk
->value
= copystring(BigBuffer
);
1300 children
.Append((wxObject
*)chunk
);
1305 bool tmpParseToBrace
;
1306 TexMacroDef
*def
= MatchMacro(buffer
, &pos
, &env
, &tmpParseToBrace
);
1309 CustomMacro
*customMacro
= FindCustomMacro(def
->name
);
1311 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, def
);
1312 chunk
->no_args
= def
->no_args
;
1313 // chunk->name = copystring(def->name);
1314 chunk
->macroId
= def
->macroId
;
1316 children
.Append((wxObject
*)chunk
);
1318 pos
= ParseMacroBody(def
->name
, chunk
, chunk
->no_args
,
1319 buffer
, pos
, NULL
, TRUE
, customMacroArgs
);
1321 // If custom macro, parse the body substituting the above found args.
1324 if (customMacro
->macroBody
)
1327 // strcpy(macroBuf, "{");
1328 strcpy(macroBuf
, customMacro
->macroBody
);
1329 strcat(macroBuf
, "}");
1330 ParseArg(thisArg
, children
, macroBuf
, 0, NULL
, TRUE
, chunk
);
1333 // delete chunk; // Might delete children
1338 MacroError(buffer
+pos
);
1344 * If all else fails, we assume that we have
1345 * a pair of braces on their own, so return a `dummy' macro
1346 * definition with just one argument to parse.
1350 SoloBlockDef
= new TexMacroDef(ltSOLO_BLOCK
, "solo block", 1, FALSE
);
1355 TexChunk
*chunk1
= new TexChunk(CHUNK_TYPE_STRING
);
1356 BigBuffer
[buf_ptr
] = 0;
1358 chunk1
->value
= copystring(BigBuffer
);
1359 children
.Append((wxObject
*)chunk1
);
1361 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
, SoloBlockDef
);
1362 chunk
->no_args
= SoloBlockDef
->no_args
;
1363 // chunk->name = copystring(SoloBlockDef->name);
1364 chunk
->macroId
= SoloBlockDef
->macroId
;
1365 children
.Append((wxObject
*)chunk
);
1367 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, SoloBlockDef
);
1369 chunk
->children
.Append((wxObject
*)arg
);
1370 // arg->name = copystring(SoloBlockDef->name);
1372 arg
->macroId
= chunk
->macroId
;
1374 pos
= ParseArg(arg
, arg
->children
, buffer
, pos
, NULL
, TRUE
, customMacroArgs
);
1382 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1383 BigBuffer
[buf_ptr
] = 0;
1385 chunk
->value
= copystring(BigBuffer
);
1386 children
.Append((wxObject
*)chunk
);
1391 if (buffer
[pos
] == '$')
1393 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1395 // chunk->name = copystring("$$");
1396 chunk
->macroId
= ltSPECIALDOUBLEDOLLAR
;
1397 children
.Append((wxObject
*)chunk
);
1402 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1404 // chunk->name = copystring("_$");
1405 chunk
->macroId
= ltSPECIALDOLLAR
;
1406 children
.Append((wxObject
*)chunk
);
1414 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1415 BigBuffer
[buf_ptr
] = 0;
1417 chunk
->value
= copystring(BigBuffer
);
1418 children
.Append((wxObject
*)chunk
);
1422 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1424 // chunk->name = copystring("_~");
1425 chunk
->macroId
= ltSPECIALTILDE
;
1426 children
.Append((wxObject
*)chunk
);
1429 case '#': // Either treat as a special TeX character or as a macro arg
1433 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1434 BigBuffer
[buf_ptr
] = 0;
1436 chunk
->value
= copystring(BigBuffer
);
1437 children
.Append((wxObject
*)chunk
);
1441 if (!customMacroArgs
)
1443 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1445 // chunk->name = copystring("_#");
1446 chunk
->macroId
= ltSPECIALHASH
;
1447 children
.Append((wxObject
*)chunk
);
1451 if (isdigit(buffer
[pos
]))
1453 int n
= buffer
[pos
] - 48;
1455 wxNode
*node
= customMacroArgs
->children
.Nth(n
-1);
1458 TexChunk
*argChunk
= (TexChunk
*)node
->Data();
1459 children
.Append((wxObject
*)new TexChunk(*argChunk
));
1467 // Remove white space before and after the ampersand,
1468 // since this is probably a table column separator with
1469 // some convenient -- but useless -- white space in the text.
1470 while ((buf_ptr
> 0) && ((BigBuffer
[buf_ptr
-1] == ' ') || (BigBuffer
[buf_ptr
-1] == 9)))
1475 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_STRING
);
1476 BigBuffer
[buf_ptr
] = 0;
1478 chunk
->value
= copystring(BigBuffer
);
1479 children
.Append((wxObject
*)chunk
);
1484 while (buffer
[pos
] == ' ' || buffer
[pos
] == 9)
1487 TexChunk
*chunk
= new TexChunk(CHUNK_TYPE_MACRO
);
1489 // chunk->name = copystring("_&");
1490 chunk
->macroId
= ltSPECIALAMPERSAND
;
1491 children
.Append((wxObject
*)chunk
);
1494 // Eliminate end-of-line comment
1498 while (ch
!= 10 && ch
!= 13 && ch
!= 0)
1503 if (buffer
[pos
] == 10 || buffer
[pos
] == 13)
1506 if (buffer
[pos
] == 10) pos
++; // Eliminate newline following DOS line feed
1513 BigBuffer
[buf_ptr
] = ' ';
1514 BigBuffer
[buf_ptr
+1] = 0;
1521 BigBuffer
[buf_ptr
] = ch
;
1522 BigBuffer
[buf_ptr
+1] = 0;
1533 * Consume as many arguments as the macro definition specifies
1537 int ParseMacroBody(char *macro_name
, TexChunk
*parent
,
1538 int no_args
, char *buffer
, int pos
,
1539 char *environment
, bool parseToBrace
,
1540 TexChunk
*customMacroArgs
)
1543 if (stopRunning
) return pos
;
1545 // Check for a first optional argument
1546 if (buffer
[pos
] == ' ' && buffer
[pos
+1] == '[')
1548 // Fool following code into thinking that this is definitely
1549 // an optional first argument. (If a space before a non-first argument,
1550 // [ is interpreted as a [, not an optional argument.)
1556 if (buffer
[pos
] == '[')
1562 for (i
= 0; i
< no_args
; i
++)
1565 TexChunk
*arg
= new TexChunk(CHUNK_TYPE_ARG
, parent
->def
);
1567 parent
->children
.Append((wxObject
*)arg
);
1568 // arg->name = copystring(macro_name);
1569 arg
->argn
= maxArgs
;
1570 arg
->macroId
= parent
->macroId
;
1572 // To parse the first arg of a 2 arg \begin{thing}{arg} ... \end{thing}
1573 // have to fool parser into thinking this is a regular kind of block.
1575 if ((no_args
== 2) && (i
== 0))
1578 actualEnv
= environment
;
1580 bool isOptional
= FALSE
;
1582 // Remove the first { of the argument so it doesn't get recognized as { ... }
1583 // EatWhiteSpace(buffer, &pos);
1586 // The reason for these tests is to not consume braces that don't
1587 // belong to this macro.
1588 // E.g. {\bf {\small thing}}
1589 if ((pos
> 0) && (buffer
[pos
-1] != ' ') && buffer
[pos
] == '{')
1592 if ((pos
> 0) && (buffer
[pos
-1] != ' ') && (buffer
[pos
] == '['))
1597 else if ((pos
> 1) && (buffer
[pos
-1] != ' ') && (buffer
[pos
+1] == '['))
1603 arg
->optional
= isOptional
;
1605 pos
= ParseArg(arg
, arg
->children
, buffer
, pos
, actualEnv
, parseToBrace
, customMacroArgs
);
1607 // If we've encountered an OPTIONAL argument, go another time around
1608 // the loop, because we've got more than we thought.
1609 // Hopefully optional args don't occur at the end of a macro use
1610 // or we might miss it.
1611 // Don't increment no of times round loop if the first optional arg
1612 // -- we already did it before the loop.
1613 if (arg
->optional
&& (i
> 0))
1616 parent
->no_args
= maxArgs
;
1618 // Tell each argument how many args there are (useful when processing an arg)
1619 wxNode
*node
= parent
->children
.First();
1622 TexChunk
*chunk
= (TexChunk
*)node
->Data();
1623 chunk
->no_args
= maxArgs
;
1624 node
= node
->Next();
1629 bool TexLoadFile(char *filename
)
1631 static char *line_buffer
;
1632 stopRunning
= FALSE
;
1633 strcpy(TexFileRoot
, filename
);
1634 StripExtension(TexFileRoot
);
1635 sprintf(TexBibName
, "%s.bb", TexFileRoot
);
1636 sprintf(TexTmpBibName
, "%s.bb1", TexFileRoot
);
1638 TexPathList
.EnsureFileAccessible(filename
);
1643 line_buffer
= new char[MAX_LINE_BUFFER_SIZE
];
1645 Inputs
[0] = fopen(filename
, "r");
1647 FileNames
[0] = copystring(filename
);
1650 read_a_line(line_buffer
);
1651 ParseMacroBody("toplevel", TopLevel
, 1, line_buffer
, 0, NULL
, TRUE
);
1652 if (Inputs
[0]) fclose(Inputs
[0]);
1659 TexMacroDef::TexMacroDef(int the_id
, char *the_name
, int n
, bool ig
, bool forbidLevel
)
1661 name
= copystring(the_name
);
1665 forbidden
= forbidLevel
;
1668 TexMacroDef::~TexMacroDef(void)
1670 if (name
) delete[] name
;
1673 TexChunk::TexChunk(int the_type
, TexMacroDef
*the_def
)
1685 TexChunk::TexChunk(TexChunk
& toCopy
)
1688 no_args
= toCopy
.no_args
;
1690 macroId
= toCopy
.macroId
;
1693 // name = copystring(toCopy.name);
1699 value
= copystring(toCopy
.value
);
1703 optional
= toCopy
.optional
;
1704 wxNode
*node
= toCopy
.children
.First();
1707 TexChunk
*child
= (TexChunk
*)node
->Data();
1708 children
.Append((wxObject
*)new TexChunk(*child
));
1709 node
= node
->Next();
1713 TexChunk::~TexChunk(void)
1715 // if (name) delete[] name;
1716 if (value
) delete[] value
;
1717 wxNode
*node
= children
.First();
1720 TexChunk
*child
= (TexChunk
*)node
->Data();
1722 wxNode
*next
= node
->Next();
1728 bool IsArgOptional(void) // Is this argument an optional argument?
1730 return isArgOptional
;
1733 int GetNoArgs(void) // Number of args for this macro
1738 /* Gets the text of a chunk on request (must be for small arguments
1743 void GetArgData1(TexChunk
*chunk
)
1745 switch (chunk
->type
)
1747 case CHUNK_TYPE_MACRO
:
1749 TexMacroDef
*def
= chunk
->def
;
1750 if (def
&& def
->ignore
)
1753 if (def
&& (strcmp(def
->name
, "solo block") != 0))
1755 strcat(currentArgData
, "\\");
1756 strcat(currentArgData
, def
->name
);
1759 wxNode
*node
= chunk
->children
.First();
1762 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1763 strcat(currentArgData
, "{");
1764 GetArgData1(child_chunk
);
1765 strcat(currentArgData
, "}");
1766 node
= node
->Next();
1770 case CHUNK_TYPE_ARG
:
1772 wxNode
*node
= chunk
->children
.First();
1775 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1776 GetArgData1(child_chunk
);
1777 node
= node
->Next();
1781 case CHUNK_TYPE_STRING
:
1784 strcat(currentArgData
, chunk
->value
);
1790 char *GetArgData(TexChunk
*chunk
)
1792 currentArgData
[0] = 0;
1793 GetArgData1(currentArgument
);
1794 haveArgData
= FALSE
;
1795 return currentArgData
;
1798 char *GetArgData(void)
1802 currentArgData
[0] = 0;
1803 GetArgData1(currentArgument
);
1805 return currentArgData
;
1808 TexChunk
*GetArgChunk(void)
1810 return currentArgument
;
1813 TexChunk
*GetNextChunk(void) // Look ahead to the next chunk
1818 TexChunk
*GetTopLevelChunk(void)
1823 int GetCurrentColumn(void)
1825 return currentColumn
;
1829 * Traverses document calling functions to allow the client to
1830 * write out the appropriate stuff
1834 void TraverseFromChunk(TexChunk
*chunk
, wxNode
*thisNode
, bool childrenOnly
)
1837 if (stopRunning
) return;
1839 switch (chunk
->type
)
1841 case CHUNK_TYPE_MACRO
:
1843 TexMacroDef
*def
= chunk
->def
;
1844 if (def
&& def
->ignore
)
1848 OnMacro(chunk
->macroId
, chunk
->no_args
, TRUE
);
1850 wxNode
*node
= chunk
->children
.First();
1853 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1854 TraverseFromChunk(child_chunk
, node
);
1855 node
= node
->Next();
1858 if (thisNode
&& thisNode
->Next()) nextChunk
= (TexChunk
*)thisNode
->Next()->Data();
1861 OnMacro(chunk
->macroId
, chunk
->no_args
, FALSE
);
1864 case CHUNK_TYPE_ARG
:
1866 currentArgument
= chunk
;
1868 isArgOptional
= chunk
->optional
;
1869 noArgs
= chunk
->no_args
;
1871 // If OnArgument returns FALSE, don't output.
1873 if (childrenOnly
|| OnArgument(chunk
->macroId
, chunk
->argn
, TRUE
))
1875 wxNode
*node
= chunk
->children
.First();
1878 TexChunk
*child_chunk
= (TexChunk
*)node
->Data();
1879 TraverseFromChunk(child_chunk
, node
);
1880 node
= node
->Next();
1884 currentArgument
= chunk
;
1886 if (thisNode
&& thisNode
->Next()) nextChunk
= (TexChunk
*)thisNode
->Next()->Data();
1888 isArgOptional
= chunk
->optional
;
1889 noArgs
= chunk
->no_args
;
1892 (void)OnArgument(chunk
->macroId
, chunk
->argn
, FALSE
);
1895 case CHUNK_TYPE_STRING
:
1897 extern int issuedNewParagraph
;
1898 extern int forbidResetPar
;
1899 if (chunk
->value
&& (forbidResetPar
== 0))
1901 // If non-whitespace text, we no longer have a new paragraph.
1902 if (issuedNewParagraph
&& !((chunk
->value
[0] == 10 || chunk
->value
[0] == 13 || chunk
->value
[0] == 32)
1903 && chunk
->value
[1] == 0))
1904 issuedNewParagraph
= FALSE
;
1905 TexOutput(chunk
->value
, TRUE
);
1912 void TraverseDocument(void)
1914 TraverseFromChunk(TopLevel
, NULL
);
1917 void SetCurrentOutput(FILE *fd
)
1919 CurrentOutput1
= fd
;
1920 CurrentOutput2
= NULL
;
1923 void SetCurrentOutputs(FILE *fd1
, FILE *fd2
)
1925 CurrentOutput1
= fd1
;
1926 CurrentOutput2
= fd2
;
1929 void AddMacroDef(int the_id
, char *name
, int n
, bool ignore
, bool forbid
)
1931 MacroDefs
.Put(name
, new TexMacroDef(the_id
, name
, n
, ignore
, forbid
));
1934 void TexInitialize(int bufSize
)
1936 InitialiseColourTable();
1938 TexPathList
.AddEnvList("TEXINPUT");
1941 TexPathList
.AddEnvList("TEXINPUTS");
1944 for (i
= 0; i
< 15; i
++)
1948 FileNames
[i
] = NULL
;
1951 IgnorableInputFiles
.Add("psbox.tex");
1952 BigBuffer
= new char[(bufSize
*1000)];
1953 currentArgData
= new char[2000];
1954 TexFileRoot
= new char[300];
1955 TexBibName
= new char[300];
1956 TexTmpBibName
= new char[300];
1957 AddMacroDef(ltTOPLEVEL
, "toplevel", 1);
1958 TopLevel
= new TexChunk(CHUNK_TYPE_MACRO
);
1959 // TopLevel->name = copystring("toplevel");
1960 TopLevel
->macroId
= ltTOPLEVEL
;
1961 TopLevel
->no_args
= 1;
1962 VerbatimMacroDef
= (TexMacroDef
*)MacroDefs
.Get("verbatim");
1965 void TexCleanUp(void)
1968 for (i
= 0; i
< 15; i
++)
1974 subsubsectionNo
= 0;
1977 CurrentOutput1
= NULL
;
1978 CurrentOutput2
= NULL
;
1979 CurrentInputIndex
= 0;
1980 haveArgData
= FALSE
;
1985 TopLevel
= new TexChunk(CHUNK_TYPE_MACRO
);
1986 // TopLevel->name = copystring("toplevel");
1987 TopLevel
->macroId
= ltTOPLEVEL
;
1988 TopLevel
->no_args
= 1;
1990 DocumentTitle
= NULL
;
1991 DocumentAuthor
= NULL
;
1992 DocumentDate
= NULL
;
1993 DocumentStyle
= LATEX_REPORT
;
1994 MinorDocumentStyle
= 0;
1995 BibliographyStyleString
= copystring("plain");
1996 DocumentStyleString
= copystring("report");
1997 MinorDocumentStyleString
= NULL
;
1999 // gt - Changed this so if this is the final pass
2000 // then we DO want to remove these macros, so that
2001 // memory is not MASSIVELY leaked if the user
2002 // does not exit the program, but instead runs
2003 // the program again
2004 if ((passNumber
== 1 && !runTwice
) ||
2005 (passNumber
== 2 && runTwice
))
2007 /* Don't want to remove custom macros after each pass.*/
2009 wxNode
*node
= CustomMacroList
.First();
2012 CustomMacro
*macro
= (CustomMacro
*)node
->Data();
2015 node
= CustomMacroList
.First();
2019 TexReferences
.BeginFind();
2020 wxNode
*node
= TexReferences
.Next();
2023 TexRef
*ref
= (TexRef
*)node
->Data();
2025 node
= TexReferences
.Next();
2027 TexReferences
.Clear();
2029 node
= BibList
.First();
2032 BibEntry
*entry
= (BibEntry
*)node
->Data();
2035 node
= BibList
.First();
2037 CitationList
.Clear();
2038 ResetTopicCounter();
2041 // There is likely to be one set of macros used by all utilities.
2042 void DefineDefaultMacros(void)
2044 // Put names which subsume other names at the TOP
2045 // so they get recognized first
2047 AddMacroDef(ltACCENT_GRAVE
, "`", 1);
2048 AddMacroDef(ltACCENT_ACUTE
, "'", 1);
2049 AddMacroDef(ltACCENT_CARET
, "^", 1);
2050 AddMacroDef(ltACCENT_UMLAUT
, "\"", 1);
2051 AddMacroDef(ltACCENT_TILDE
, "~", 1);
2052 AddMacroDef(ltACCENT_DOT
, ".", 1);
2053 AddMacroDef(ltACCENT_CADILLA
, "c", 1);
2054 AddMacroDef(ltSMALLSPACE1
, ",", 0);
2055 AddMacroDef(ltSMALLSPACE2
, ";", 0);
2057 AddMacroDef(ltABSTRACT
, "abstract", 1);
2058 AddMacroDef(ltADDCONTENTSLINE
, "addcontentsline", 3);
2059 AddMacroDef(ltADDTOCOUNTER
, "addtocounter", 2);
2060 AddMacroDef(ltALEPH
, "aleph", 0);
2061 AddMacroDef(ltALPHA
, "alpha", 0);
2062 AddMacroDef(ltALPH1
, "alph", 1);
2063 AddMacroDef(ltALPH2
, "Alph", 1);
2064 AddMacroDef(ltANGLE
, "angle", 0);
2065 AddMacroDef(ltAPPENDIX
, "appendix", 0);
2066 AddMacroDef(ltAPPROX
, "approx", 0);
2067 AddMacroDef(ltARABIC
, "arabic", 1);
2068 AddMacroDef(ltARRAY
, "array", 1);
2069 AddMacroDef(ltAST
, "ast", 0);
2070 AddMacroDef(ltASYMP
, "asymp", 0);
2071 AddMacroDef(ltAUTHOR
, "author", 1);
2073 AddMacroDef(ltBACKGROUNDCOLOUR
, "backgroundcolour", 1);
2074 AddMacroDef(ltBACKGROUNDIMAGE
, "backgroundimage", 1);
2075 AddMacroDef(ltBACKGROUND
, "background", 1);
2076 AddMacroDef(ltBACKSLASHRAW
, "backslashraw", 0);
2077 AddMacroDef(ltBACKSLASH
, "backslash", 0);
2078 AddMacroDef(ltBASELINESKIP
, "baselineskip", 1);
2079 AddMacroDef(ltBCOL
, "bcol", 2);
2080 AddMacroDef(ltBETA
, "beta", 0);
2081 AddMacroDef(ltBFSERIES
, "bfseries", 1);
2082 AddMacroDef(ltBF
, "bf", 1);
2083 AddMacroDef(ltBIBITEM
, "bibitem", 2); // For convenience, bibitem has 2 args: label and item.
2084 // The Latex syntax permits writing as 2 args.
2085 AddMacroDef(ltBIBLIOGRAPHYSTYLE
, "bibliographystyle", 1);
2086 AddMacroDef(ltBIBLIOGRAPHY
, "bibliography", 1);
2087 AddMacroDef(ltBIGTRIANGLEDOWN
, "bigtriangledown", 0);
2088 AddMacroDef(ltBOT
, "bot", 0);
2089 AddMacroDef(ltBOXIT
, "boxit", 1);
2090 AddMacroDef(ltBOX
, "box", 0);
2091 AddMacroDef(ltBRCLEAR
, "brclear", 0);
2092 AddMacroDef(ltBULLET
, "bullet", 0);
2094 AddMacroDef(ltCAPTIONSTAR
, "caption*", 1);
2095 AddMacroDef(ltCAPTION
, "caption", 1);
2096 AddMacroDef(ltCAP
, "cap", 0);
2097 AddMacroDef(ltCDOTS
, "cdots", 0);
2098 AddMacroDef(ltCDOT
, "cdot", 0);
2099 AddMacroDef(ltCENTERLINE
, "centerline", 1);
2100 AddMacroDef(ltCENTERING
, "centering", 0);
2101 AddMacroDef(ltCENTER
, "center", 1);
2102 AddMacroDef(ltCEXTRACT
, "cextract", 0);
2103 AddMacroDef(ltCHAPTERHEADING
, "chapterheading", 1);
2104 AddMacroDef(ltCHAPTERSTAR
, "chapter*", 1);
2105 AddMacroDef(ltCHAPTER
, "chapter", 1);
2106 AddMacroDef(ltCHI
, "chi", 0);
2107 AddMacroDef(ltCINSERT
, "cinsert", 0);
2108 AddMacroDef(ltCIRC
, "circ", 0);
2109 AddMacroDef(ltCITE
, "cite", 1);
2110 AddMacroDef(ltCLASS
, "class", 1);
2111 AddMacroDef(ltCLEARDOUBLEPAGE
, "cleardoublepage", 0);
2112 AddMacroDef(ltCLEARPAGE
, "clearpage", 0);
2113 AddMacroDef(ltCLINE
, "cline", 1);
2114 AddMacroDef(ltCLIPSFUNC
, "clipsfunc", 3);
2115 AddMacroDef(ltCLUBSUIT
, "clubsuit", 0);
2116 AddMacroDef(ltCOLUMNSEP
, "columnsep", 1);
2117 AddMacroDef(ltCOMMENT
, "comment", 1, TRUE
);
2118 AddMacroDef(ltCONG
, "cong", 0);
2119 AddMacroDef(ltCOPYRIGHT
, "copyright", 0);
2120 AddMacroDef(ltCPARAM
, "cparam", 2);
2121 AddMacroDef(ltCHEAD
, "chead", 1);
2122 AddMacroDef(ltCFOOT
, "cfoot", 1);
2123 AddMacroDef(ltCUP
, "cup", 0);
2125 AddMacroDef(ltDASHV
, "dashv", 0);
2126 AddMacroDef(ltDATE
, "date", 1);
2127 AddMacroDef(ltDELTA
, "delta", 0);
2128 AddMacroDef(ltCAP_DELTA
, "Delta", 0);
2129 AddMacroDef(ltDEFINECOLOUR
, "definecolour", 4);
2130 AddMacroDef(ltDEFINECOLOR
, "definecolor", 4);
2131 AddMacroDef(ltDESCRIPTION
, "description", 1);
2132 AddMacroDef(ltDESTRUCT
, "destruct", 1);
2133 AddMacroDef(ltDIAMOND2
, "diamond2", 0);
2134 AddMacroDef(ltDIAMOND
, "diamond", 0);
2135 AddMacroDef(ltDIV
, "div", 0);
2136 AddMacroDef(ltDOCUMENTCLASS
, "documentclass", 1);
2137 AddMacroDef(ltDOCUMENTSTYLE
, "documentstyle", 1);
2138 AddMacroDef(ltDOCUMENT
, "document", 1);
2139 AddMacroDef(ltDOUBLESPACE
, "doublespace", 1);
2140 AddMacroDef(ltDOTEQ
, "doteq", 0);
2141 AddMacroDef(ltDOWNARROW
, "downarrow", 0);
2142 AddMacroDef(ltDOWNARROW2
, "Downarrow", 0);
2144 AddMacroDef(ltEMPTYSET
, "emptyset", 0);
2145 AddMacroDef(ltEMPH
, "emph", 1);
2146 AddMacroDef(ltEM
, "em", 1);
2147 AddMacroDef(ltENUMERATE
, "enumerate", 1);
2148 AddMacroDef(ltEPSILON
, "epsilon", 0);
2149 AddMacroDef(ltEQUATION
, "equation", 1);
2150 AddMacroDef(ltEQUIV
, "equiv", 0);
2151 AddMacroDef(ltETA
, "eta", 0);
2152 AddMacroDef(ltEVENSIDEMARGIN
, "evensidemargin", 1);
2153 AddMacroDef(ltEXISTS
, "exists", 0);
2155 AddMacroDef(ltFBOX
, "fbox", 1);
2156 AddMacroDef(ltFCOL
, "fcol", 2);
2157 AddMacroDef(ltFIGURE
, "figure", 1);
2158 AddMacroDef(ltFIGURESTAR
, "figure*", 1);
2159 AddMacroDef(ltFLUSHLEFT
, "flushleft", 1);
2160 AddMacroDef(ltFLUSHRIGHT
, "flushright", 1);
2161 AddMacroDef(ltFOLLOWEDLINKCOLOUR
, "followedlinkcolour", 1);
2162 AddMacroDef(ltFOOTHEIGHT
, "footheight", 1);
2163 AddMacroDef(ltFOOTNOTEPOPUP
, "footnotepopup", 2);
2164 AddMacroDef(ltFOOTNOTE
, "footnote", 1);
2165 AddMacroDef(ltFOOTSKIP
, "footskip", 1);
2166 AddMacroDef(ltFORALL
, "forall", 0);
2167 AddMacroDef(ltFRAMEBOX
, "framebox", 1);
2168 AddMacroDef(ltFROWN
, "frown", 0);
2169 AddMacroDef(ltFUNCTIONSECTION
, "functionsection", 1);
2170 AddMacroDef(ltFUNC
, "func", 3);
2171 AddMacroDef(ltFOOTNOTESIZE
, "footnotesize", 0);
2172 AddMacroDef(ltFANCYPLAIN
, "fancyplain", 2);
2174 AddMacroDef(ltGAMMA
, "gamma", 0);
2175 AddMacroDef(ltCAP_GAMMA
, "Gamma", 0);
2176 AddMacroDef(ltGEQ
, "geq", 0);
2177 AddMacroDef(ltGE
, "ge", 0);
2178 AddMacroDef(ltGG
, "gg", 0);
2179 AddMacroDef(ltGLOSSARY
, "glossary", 1);
2180 AddMacroDef(ltGLOSS
, "gloss", 1);
2182 AddMacroDef(ltHEADHEIGHT
, "headheight", 1);
2183 AddMacroDef(ltHEARTSUIT
, "heartsuit", 0);
2184 AddMacroDef(ltHELPGLOSSARY
, "helpglossary", 1);
2185 AddMacroDef(ltHELPIGNORE
, "helpignore", 1, TRUE
);
2186 AddMacroDef(ltHELPONLY
, "helponly", 1);
2187 AddMacroDef(ltHELPINPUT
, "helpinput", 1);
2188 AddMacroDef(ltHELPFONTFAMILY
, "helpfontfamily", 1);
2189 AddMacroDef(ltHELPFONTSIZE
, "helpfontsize", 1);
2190 AddMacroDef(ltHELPREFN
, "helprefn", 2);
2191 AddMacroDef(ltHELPREF
, "helpref", 2);
2192 AddMacroDef(ltHFILL
, "hfill", 0);
2193 AddMacroDef(ltHLINE
, "hline", 0);
2194 AddMacroDef(ltHRULE
, "hrule", 0);
2195 AddMacroDef(ltHSPACESTAR
, "hspace*", 1);
2196 AddMacroDef(ltHSPACE
, "hspace", 1);
2197 AddMacroDef(ltHSKIPSTAR
, "hskip*", 1);
2198 AddMacroDef(ltHSKIP
, "hskip", 1);
2199 AddMacroDef(lthuge
, "huge", 1);
2200 AddMacroDef(ltHuge
, "Huge", 1);
2201 AddMacroDef(ltHUGE
, "HUGE", 1);
2202 AddMacroDef(ltHTMLIGNORE
, "htmlignore", 1);
2203 AddMacroDef(ltHTMLONLY
, "htmlonly", 1);
2205 AddMacroDef(ltIM
, "im", 0);
2206 AddMacroDef(ltINCLUDEONLY
, "includeonly", 1);
2207 AddMacroDef(ltINCLUDE
, "include", 1);
2208 AddMacroDef(ltINDENTED
, "indented", 2);
2209 AddMacroDef(ltINDEX
, "index", 1);
2210 AddMacroDef(ltINPUT
, "input", 1, TRUE
);
2211 AddMacroDef(ltIOTA
, "iota", 0);
2212 AddMacroDef(ltITEMIZE
, "itemize", 1);
2213 AddMacroDef(ltITEM
, "item", 0);
2214 AddMacroDef(ltIMAGEMAP
, "imagemap", 3);
2215 AddMacroDef(ltIMAGEL
, "imagel", 2);
2216 AddMacroDef(ltIMAGER
, "imager", 2);
2217 AddMacroDef(ltIMAGE
, "image", 2);
2218 AddMacroDef(ltIN
, "in", 0);
2219 AddMacroDef(ltINFTY
, "infty", 0);
2220 AddMacroDef(ltITSHAPE
, "itshape", 1);
2221 AddMacroDef(ltIT
, "it", 1);
2222 AddMacroDef(ltITEMSEP
, "itemsep", 1);
2223 AddMacroDef(ltINSERTATLEVEL
, "insertatlevel", 2);
2225 AddMacroDef(ltKAPPA
, "kappa", 0);
2226 AddMacroDef(ltKILL
, "kill", 0);
2228 AddMacroDef(ltLABEL
, "label", 1);
2229 AddMacroDef(ltLAMBDA
, "lambda", 0);
2230 AddMacroDef(ltCAP_LAMBDA
, "Lambda", 0);
2231 AddMacroDef(ltlarge
, "large", 1);
2232 AddMacroDef(ltLarge
, "Large", 1);
2233 AddMacroDef(ltLARGE
, "LARGE", 1);
2234 AddMacroDef(ltLATEXIGNORE
, "latexignore", 1);
2235 AddMacroDef(ltLATEXONLY
, "latexonly", 1);
2236 AddMacroDef(ltLATEX
, "LaTeX", 0);
2237 AddMacroDef(ltLBOX
, "lbox", 1);
2238 AddMacroDef(ltLBRACERAW
, "lbraceraw", 0);
2239 AddMacroDef(ltLDOTS
, "ldots", 0);
2240 AddMacroDef(ltLEQ
, "leq", 0);
2241 AddMacroDef(ltLE
, "le", 0);
2242 AddMacroDef(ltLEFTARROW
, "leftarrow", 0);
2243 AddMacroDef(ltLEFTRIGHTARROW
, "leftrightarrow", 0);
2244 AddMacroDef(ltLEFTARROW2
, "Leftarrow", 0);
2245 AddMacroDef(ltLEFTRIGHTARROW2
, "Leftrightarrow", 0);
2246 AddMacroDef(ltLINEBREAK
, "linebreak", 0);
2247 AddMacroDef(ltLINKCOLOUR
, "linkcolour", 1);
2248 AddMacroDef(ltLISTOFFIGURES
, "listoffigures", 0);
2249 AddMacroDef(ltLISTOFTABLES
, "listoftables", 0);
2250 AddMacroDef(ltLHEAD
, "lhead", 1);
2251 AddMacroDef(ltLFOOT
, "lfoot", 1);
2252 AddMacroDef(ltLOWERCASE
, "lowercase", 1);
2253 AddMacroDef(ltLL
, "ll", 0);
2255 AddMacroDef(ltMAKEGLOSSARY
, "makeglossary", 0);
2256 AddMacroDef(ltMAKEINDEX
, "makeindex", 0);
2257 AddMacroDef(ltMAKETITLE
, "maketitle", 0);
2258 AddMacroDef(ltMARKRIGHT
, "markright", 1);
2259 AddMacroDef(ltMARKBOTH
, "markboth", 2);
2260 AddMacroDef(ltMARGINPARWIDTH
, "marginparwidth", 1);
2261 AddMacroDef(ltMARGINPARSEP
, "marginparsep", 1);
2262 AddMacroDef(ltMARGINPARODD
, "marginparodd", 1);
2263 AddMacroDef(ltMARGINPAREVEN
, "marginpareven", 1);
2264 AddMacroDef(ltMARGINPAR
, "marginpar", 1);
2265 AddMacroDef(ltMBOX
, "mbox", 1);
2266 AddMacroDef(ltMDSERIES
, "mdseries", 1);
2267 AddMacroDef(ltMEMBERSECTION
, "membersection", 1);
2268 AddMacroDef(ltMEMBER
, "member", 2);
2269 AddMacroDef(ltMID
, "mid", 0);
2270 AddMacroDef(ltMODELS
, "models", 0);
2271 AddMacroDef(ltMP
, "mp", 0);
2272 AddMacroDef(ltMULTICOLUMN
, "multicolumn", 3);
2273 AddMacroDef(ltMU
, "mu", 0);
2275 AddMacroDef(ltNABLA
, "nabla", 0);
2276 AddMacroDef(ltNEG
, "neg", 0);
2277 AddMacroDef(ltNEQ
, "neq", 0);
2278 AddMacroDef(ltNEWCOUNTER
, "newcounter", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2279 AddMacroDef(ltNEWLINE
, "newline", 0);
2280 AddMacroDef(ltNEWPAGE
, "newpage", 0);
2281 AddMacroDef(ltNI
, "ni", 0);
2282 AddMacroDef(ltNOCITE
, "nocite", 1);
2283 AddMacroDef(ltNOINDENT
, "noindent", 0);
2284 AddMacroDef(ltNOLINEBREAK
, "nolinebreak", 0);
2285 AddMacroDef(ltNOPAGEBREAK
, "nopagebreak", 0);
2286 AddMacroDef(ltNORMALSIZE
, "normalsize", 1);
2287 AddMacroDef(ltNORMALBOX
, "normalbox", 1);
2288 AddMacroDef(ltNORMALBOXD
, "normalboxd", 1);
2289 AddMacroDef(ltNOTEQ
, "noteq", 0);
2290 AddMacroDef(ltNOTIN
, "notin", 0);
2291 AddMacroDef(ltNOTSUBSET
, "notsubset", 0);
2292 AddMacroDef(ltNU
, "nu", 0);
2294 AddMacroDef(ltODDSIDEMARGIN
, "oddsidemargin", 1);
2295 AddMacroDef(ltOMEGA
, "omega", 0);
2296 AddMacroDef(ltCAP_OMEGA
, "Omega", 0);
2297 AddMacroDef(ltONECOLUMN
, "onecolumn", 0);
2298 AddMacroDef(ltOPLUS
, "oplus", 0);
2299 AddMacroDef(ltOSLASH
, "oslash", 0);
2300 AddMacroDef(ltOTIMES
, "otimes", 0);
2302 AddMacroDef(ltPAGEBREAK
, "pagebreak", 0);
2303 AddMacroDef(ltPAGEREF
, "pageref", 1);
2304 AddMacroDef(ltPAGESTYLE
, "pagestyle", 1);
2305 AddMacroDef(ltPAGENUMBERING
, "pagenumbering", 1);
2306 AddMacroDef(ltPARAGRAPHSTAR
, "paragraph*", 1);
2307 AddMacroDef(ltPARAGRAPH
, "paragraph", 1);
2308 AddMacroDef(ltPARALLEL
, "parallel", 0);
2309 AddMacroDef(ltPARAM
, "param", 2);
2310 AddMacroDef(ltPARINDENT
, "parindent", 1);
2311 AddMacroDef(ltPARSKIP
, "parskip", 1);
2312 AddMacroDef(ltPARTIAL
, "partial", 0);
2313 AddMacroDef(ltPARTSTAR
, "part*", 1);
2314 AddMacroDef(ltPART
, "part", 1);
2315 AddMacroDef(ltPAR
, "par", 0);
2316 AddMacroDef(ltPERP
, "perp", 0);
2317 AddMacroDef(ltPHI
, "phi", 0);
2318 AddMacroDef(ltCAP_PHI
, "Phi", 0);
2319 AddMacroDef(ltPFUNC
, "pfunc", 3);
2320 AddMacroDef(ltPICTURE
, "picture", 1);
2321 AddMacroDef(ltPI
, "pi", 0);
2322 AddMacroDef(ltCAP_PI
, "Pi", 0);
2323 AddMacroDef(ltPM
, "pm", 0);
2324 AddMacroDef(ltPOPREFONLY
, "poprefonly", 1);
2325 AddMacroDef(ltPOPREF
, "popref", 2);
2326 AddMacroDef(ltPOUNDS
, "pounds", 0);
2327 AddMacroDef(ltPREC
, "prec", 0);
2328 AddMacroDef(ltPRECEQ
, "preceq", 0);
2329 AddMacroDef(ltPRINTINDEX
, "printindex", 0);
2330 AddMacroDef(ltPROPTO
, "propto", 0);
2331 AddMacroDef(ltPSBOXTO
, "psboxto", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2332 AddMacroDef(ltPSBOX
, "psbox", 1, FALSE
, (bool)FORBID_ABSOLUTELY
);
2333 AddMacroDef(ltPSI
, "psi", 0);
2334 AddMacroDef(ltCAP_PSI
, "Psi", 0);
2336 AddMacroDef(ltQUOTE
, "quote", 1);
2337 AddMacroDef(ltQUOTATION
, "quotation", 1);
2339 AddMacroDef(ltRAGGEDBOTTOM
, "raggedbottom", 0);
2340 AddMacroDef(ltRAGGEDLEFT
, "raggedleft", 0);
2341 AddMacroDef(ltRAGGEDRIGHT
, "raggedright", 0);
2342 AddMacroDef(ltRBRACERAW
, "rbraceraw", 0);
2343 AddMacroDef(ltREF
, "ref", 1);
2344 AddMacroDef(ltREGISTERED
, "registered", 0);
2345 AddMacroDef(ltRE
, "we", 0);
2346 AddMacroDef(ltRHO
, "rho", 0);
2347 AddMacroDef(ltRIGHTARROW
, "rightarrow", 0);
2348 AddMacroDef(ltRIGHTARROW2
, "rightarrow2", 0);
2349 AddMacroDef(ltRMFAMILY
, "rmfamily", 1);
2350 AddMacroDef(ltRM
, "rm", 1);
2351 AddMacroDef(ltROMAN
, "roman", 1);
2352 AddMacroDef(ltROMAN2
, "Roman", 1);
2353 // AddMacroDef(lt"row", 1);
2354 AddMacroDef(ltRTFSP
, "rtfsp", 0);
2355 AddMacroDef(ltRTFIGNORE
, "rtfignore", 1);
2356 AddMacroDef(ltRTFONLY
, "rtfonly", 1);
2357 AddMacroDef(ltRULEDROW
, "ruledrow", 1);
2358 AddMacroDef(ltDRULED
, "druled", 1);
2359 AddMacroDef(ltRULE
, "rule", 2);
2360 AddMacroDef(ltRHEAD
, "rhead", 1);
2361 AddMacroDef(ltRFOOT
, "rfoot", 1);
2362 AddMacroDef(ltROW
, "row", 1);
2364 AddMacroDef(ltSCSHAPE
, "scshape", 1);
2365 AddMacroDef(ltSC
, "sc", 1);
2366 AddMacroDef(ltSECTIONHEADING
, "sectionheading", 1);
2367 AddMacroDef(ltSECTIONSTAR
, "section*", 1);
2368 AddMacroDef(ltSECTION
, "section", 1);
2369 AddMacroDef(ltSETCOUNTER
, "setcounter", 2);
2370 AddMacroDef(ltSFFAMILY
, "sffamily", 1);
2371 AddMacroDef(ltSF
, "sf", 1);
2372 AddMacroDef(ltSHARP
, "sharp", 0);
2373 AddMacroDef(ltSHORTCITE
, "shortcite", 1);
2374 AddMacroDef(ltSIGMA
, "sigma", 0);
2375 AddMacroDef(ltCAP_SIGMA
, "Sigma", 0);
2376 AddMacroDef(ltSIM
, "sim", 0);
2377 AddMacroDef(ltSIMEQ
, "simeq", 0);
2378 AddMacroDef(ltSINGLESPACE
, "singlespace", 1);
2379 AddMacroDef(ltSIZEDBOX
, "sizedbox", 2);
2380 AddMacroDef(ltSIZEDBOXD
, "sizedboxd", 2);
2381 AddMacroDef(ltSLOPPYPAR
, "sloppypar", 1);
2382 AddMacroDef(ltSLOPPY
, "sloppy", 0);
2383 AddMacroDef(ltSLSHAPE
, "slshape", 1);
2384 AddMacroDef(ltSL
, "sl", 1);
2385 AddMacroDef(ltSMALL
, "small", 1);
2386 AddMacroDef(ltSMILE
, "smile", 0);
2387 AddMacroDef(ltSS
, "ss", 0);
2388 AddMacroDef(ltSTAR
, "star", 0);
2389 AddMacroDef(ltSUBITEM
, "subitem", 0);
2390 AddMacroDef(ltSUBPARAGRAPHSTAR
, "subparagraph*", 1);
2391 AddMacroDef(ltSUBPARAGRAPH
, "subparagraph", 1);
2392 AddMacroDef(ltSPECIAL
, "special", 1);
2393 AddMacroDef(ltSUBSECTIONSTAR
, "subsection*", 1);
2394 AddMacroDef(ltSUBSECTION
, "subsection", 1);
2395 AddMacroDef(ltSUBSETEQ
, "subseteq", 0);
2396 AddMacroDef(ltSUBSET
, "subset", 0);
2397 AddMacroDef(ltSUCC
, "succ", 0);
2398 AddMacroDef(ltSUCCEQ
, "succeq", 0);
2399 AddMacroDef(ltSUPSETEQ
, "supseteq", 0);
2400 AddMacroDef(ltSUPSET
, "supset", 0);
2401 AddMacroDef(ltSUBSUBSECTIONSTAR
,"subsubsection*", 1);
2402 AddMacroDef(ltSUBSUBSECTION
, "subsubsection", 1);
2403 AddMacroDef(ltSUPERTABULAR
, "supertabular", 2, FALSE
);
2404 AddMacroDef(ltSURD
, "surd", 0);
2405 AddMacroDef(ltSCRIPTSIZE
, "scriptsize", 1);
2406 AddMacroDef(ltSETHEADER
, "setheader", 6);
2407 AddMacroDef(ltSETFOOTER
, "setfooter", 6);
2408 AddMacroDef(ltSETHOTSPOTCOLOUR
, "sethotspotcolour", 1);
2409 AddMacroDef(ltSETHOTSPOTCOLOR
, "sethotspotcolor", 1);
2410 AddMacroDef(ltSETHOTSPOTUNDERLINE
, "sethotspotunderline", 1);
2411 AddMacroDef(ltSETTRANSPARENCY
, "settransparency", 1);
2412 AddMacroDef(ltSPADESUIT
, "spadesuit", 0);
2414 AddMacroDef(ltTABBING
, "tabbing", 2);
2415 AddMacroDef(ltTABLEOFCONTENTS
, "tableofcontents", 0);
2416 AddMacroDef(ltTABLE
, "table", 1);
2417 AddMacroDef(ltTABULAR
, "tabular", 2, FALSE
);
2418 AddMacroDef(ltTAB
, "tab", 0);
2419 AddMacroDef(ltTAU
, "tau", 0);
2420 AddMacroDef(ltTEXTRM
, "textrm", 1);
2421 AddMacroDef(ltTEXTSF
, "textsf", 1);
2422 AddMacroDef(ltTEXTTT
, "texttt", 1);
2423 AddMacroDef(ltTEXTBF
, "textbf", 1);
2424 AddMacroDef(ltTEXTIT
, "textit", 1);
2425 AddMacroDef(ltTEXTSL
, "textsl", 1);
2426 AddMacroDef(ltTEXTSC
, "textsc", 1);
2427 AddMacroDef(ltTEXTWIDTH
, "textwidth", 1);
2428 AddMacroDef(ltTEXTHEIGHT
, "textheight", 1);
2429 AddMacroDef(ltTEXTCOLOUR
, "textcolour", 1);
2430 AddMacroDef(ltTEX
, "TeX", 0);
2431 AddMacroDef(ltTHEBIBLIOGRAPHY
, "thebibliography", 2);
2432 AddMacroDef(ltTHETA
, "theta", 0);
2433 AddMacroDef(ltTIMES
, "times", 0);
2434 AddMacroDef(ltCAP_THETA
, "Theta", 0);
2435 AddMacroDef(ltTITLEPAGE
, "titlepage", 1);
2436 AddMacroDef(ltTITLE
, "title", 1);
2437 AddMacroDef(ltTINY
, "tiny", 1);
2438 AddMacroDef(ltTODAY
, "today", 0);
2439 AddMacroDef(ltTOPMARGIN
, "topmargin", 1);
2440 AddMacroDef(ltTOPSKIP
, "topskip", 1);
2441 AddMacroDef(ltTRIANGLE
, "triangle", 0);
2442 AddMacroDef(ltTTFAMILY
, "ttfamily", 1);
2443 AddMacroDef(ltTT
, "tt", 1);
2444 AddMacroDef(ltTYPEIN
, "typein", 1);
2445 AddMacroDef(ltTYPEOUT
, "typeout", 1);
2446 AddMacroDef(ltTWOCOLWIDTHA
, "twocolwidtha", 1);
2447 AddMacroDef(ltTWOCOLWIDTHB
, "twocolwidthb", 1);
2448 AddMacroDef(ltTWOCOLSPACING
, "twocolspacing", 1);
2449 AddMacroDef(ltTWOCOLITEMRULED
, "twocolitemruled", 2);
2450 AddMacroDef(ltTWOCOLITEM
, "twocolitem", 2);
2451 AddMacroDef(ltTWOCOLLIST
, "twocollist", 1);
2452 AddMacroDef(ltTWOCOLUMN
, "twocolumn", 0);
2453 AddMacroDef(ltTHEPAGE
, "thepage", 0);
2454 AddMacroDef(ltTHECHAPTER
, "thechapter", 0);
2455 AddMacroDef(ltTHESECTION
, "thesection", 0);
2456 AddMacroDef(ltTHISPAGESTYLE
, "thispagestyle", 1);
2458 AddMacroDef(ltUNDERLINE
, "underline", 1);
2459 AddMacroDef(ltUPSILON
, "upsilon", 0);
2460 AddMacroDef(ltCAP_UPSILON
, "Upsilon", 0);
2461 AddMacroDef(ltUPARROW
, "uparrow", 0);
2462 AddMacroDef(ltUPARROW2
, "Uparrow", 0);
2463 AddMacroDef(ltUPPERCASE
, "uppercase", 1);
2464 AddMacroDef(ltUPSHAPE
, "upshape", 1);
2465 AddMacroDef(ltURLREF
, "urlref", 2);
2466 AddMacroDef(ltUSEPACKAGE
, "usepackage", 1);
2468 AddMacroDef(ltVAREPSILON
, "varepsilon", 0);
2469 AddMacroDef(ltVARPHI
, "varphi", 0);
2470 AddMacroDef(ltVARPI
, "varpi", 0);
2471 AddMacroDef(ltVARRHO
, "varrho", 0);
2472 AddMacroDef(ltVARSIGMA
, "varsigma", 0);
2473 AddMacroDef(ltVARTHETA
, "vartheta", 0);
2474 AddMacroDef(ltVDOTS
, "vdots", 0);
2475 AddMacroDef(ltVEE
, "vee", 0);
2476 AddMacroDef(ltVERBATIMINPUT
, "verbatiminput", 1);
2477 AddMacroDef(ltVERBATIM
, "verbatim", 1);
2478 AddMacroDef(ltVERBSTAR
, "verb*", 1);
2479 AddMacroDef(ltVERB
, "verb", 1);
2480 AddMacroDef(ltVERSE
, "verse", 1);
2481 AddMacroDef(ltVFILL
, "vfill", 0);
2482 AddMacroDef(ltVLINE
, "vline", 0);
2483 AddMacroDef(ltVOID
, "void", 0);
2484 AddMacroDef(ltVDASH
, "vdash", 0);
2485 AddMacroDef(ltVRULE
, "vrule", 0);
2486 AddMacroDef(ltVSPACESTAR
, "vspace*", 1);
2487 AddMacroDef(ltVSKIPSTAR
, "vskip*", 1);
2488 AddMacroDef(ltVSPACE
, "vspace", 1);
2489 AddMacroDef(ltVSKIP
, "vskip", 1);
2491 AddMacroDef(ltWEDGE
, "wedge", 0);
2492 AddMacroDef(ltWXCLIPS
, "wxclips", 0);
2493 AddMacroDef(ltWINHELPIGNORE
, "winhelpignore", 1);
2494 AddMacroDef(ltWINHELPONLY
, "winhelponly", 1);
2495 AddMacroDef(ltWP
, "wp", 0);
2497 AddMacroDef(ltXI
, "xi", 0);
2498 AddMacroDef(ltCAP_XI
, "Xi", 0);
2499 AddMacroDef(ltXLPIGNORE
, "xlpignore", 1);
2500 AddMacroDef(ltXLPONLY
, "xlponly", 1);
2502 AddMacroDef(ltZETA
, "zeta", 0);
2504 AddMacroDef(ltSPACE
, " ", 0);
2505 AddMacroDef(ltBACKSLASHCHAR
, "\\", 0);
2506 AddMacroDef(ltPIPE
, "|", 0);
2507 AddMacroDef(ltFORWARDSLASH
, "/", 0);
2508 AddMacroDef(ltUNDERSCORE
, "_", 0);
2509 AddMacroDef(ltAMPERSAND
, "&", 0);
2510 AddMacroDef(ltPERCENT
, "%", 0);
2511 AddMacroDef(ltDOLLAR
, "$", 0);
2512 AddMacroDef(ltHASH
, "#", 0);
2513 AddMacroDef(ltLPARENTH
, "(", 0);
2514 AddMacroDef(ltRPARENTH
, ")", 0);
2515 AddMacroDef(ltLBRACE
, "{", 0);
2516 AddMacroDef(ltRBRACE
, "}", 0);
2517 // AddMacroDef(ltEQUALS, "=", 0);
2518 AddMacroDef(ltRANGLEBRA
, ">", 0);
2519 AddMacroDef(ltLANGLEBRA
, "<", 0);
2520 AddMacroDef(ltPLUS
, "+", 0);
2521 AddMacroDef(ltDASH
, "-", 0);
2522 AddMacroDef(ltAT_SYMBOL
, "@", 0);
2523 // AddMacroDef(ltSINGLEQUOTE, "'", 0);
2524 // AddMacroDef(ltBACKQUOTE, "`", 0);
2528 * Default behaviour, should be called by client if can't match locally.
2532 // Called on start/end of macro examination
2533 void DefaultOnMacro(int macroId
, int no_args
, bool start
)
2537 // Default behaviour for abstract
2542 // Write the heading
2543 FakeCurrentSection(AbstractNameString
);
2544 OnMacro(ltPAR
, 0, TRUE
);
2545 OnMacro(ltPAR
, 0, FALSE
);
2549 if (DocumentStyle
== LATEX_ARTICLE
)
2557 // Default behaviour for glossary
2558 case ltHELPGLOSSARY
:
2562 // Write the heading
2563 FakeCurrentSection(GlossaryNameString
);
2564 OnMacro(ltPAR
, 0, TRUE
);
2565 OnMacro(ltPAR
, 0, FALSE
);
2566 if ((convertMode
== TEX_RTF
) && !winHelp
)
2568 OnMacro(ltPAR
, 0, TRUE
);
2569 OnMacro(ltPAR
, 0, FALSE
);
2574 case ltSPECIALAMPERSAND
:
2581 TexOutput("<<", TRUE
);
2585 TexOutput(">>", TRUE
);
2589 TexOutput("~", TRUE
);
2593 TexOutput("~", TRUE
);
2595 case ltSPECIALTILDE
:
2597 TexOutput(" ", TRUE
);
2601 TexOutput("_", TRUE
);
2605 TexOutput("#", TRUE
);
2609 TexOutput("&", TRUE
);
2613 TexOutput(" ", TRUE
);
2617 TexOutput("|", TRUE
);
2621 TexOutput("%", TRUE
);
2625 TexOutput("$", TRUE
);
2629 TexOutput("", TRUE
);
2633 TexOutput("", TRUE
);
2637 TexOutput("{", TRUE
);
2641 TexOutput("}", TRUE
);
2645 TexOutput("(c)", TRUE
);
2649 TexOutput("(r)", TRUE
);
2653 TexOutput("\\", TRUE
);
2658 TexOutput("...", TRUE
);
2662 TexOutput("|", TRUE
);
2666 TexOutput("LaTeX", TRUE
);
2670 TexOutput("TeX", TRUE
);
2674 TexOutput("£", TRUE
);
2676 case ltSPECIALDOUBLEDOLLAR
: // Interpret as center
2677 OnMacro(ltCENTER
, no_args
, start
);
2683 OnMacro(ltIT
, no_args
, start
);
2686 case ltPARAGRAPHSTAR
:
2687 case ltSUBPARAGRAPH
:
2688 case ltSUBPARAGRAPHSTAR
:
2689 OnMacro(ltSUBSUBSECTION
, no_args
, start
);
2697 TexOutput(ctime(&when
), TRUE
);
2708 if (start
) TexOutput("alpha");
2711 if (start
) TexOutput("beta");
2714 if (start
) TexOutput("gamma");
2717 if (start
) TexOutput("delta");
2721 if (start
) TexOutput("epsilon");
2724 if (start
) TexOutput("zeta");
2727 if (start
) TexOutput("eta");
2731 if (start
) TexOutput("theta");
2734 if (start
) TexOutput("iota");
2737 if (start
) TexOutput("kappa");
2740 if (start
) TexOutput("lambda");
2743 if (start
) TexOutput("mu");
2746 if (start
) TexOutput("nu");
2749 if (start
) TexOutput("xi");
2753 if (start
) TexOutput("pi");
2757 if (start
) TexOutput("rho");
2761 if (start
) TexOutput("sigma");
2764 if (start
) TexOutput("tau");
2767 if (start
) TexOutput("upsilon");
2771 if (start
) TexOutput("phi");
2774 if (start
) TexOutput("chi");
2777 if (start
) TexOutput("psi");
2780 if (start
) TexOutput("omega");
2783 if (start
) TexOutput("GAMMA");
2786 if (start
) TexOutput("DELTA");
2789 if (start
) TexOutput("THETA");
2792 if (start
) TexOutput("LAMBDA");
2795 if (start
) TexOutput("XI");
2798 if (start
) TexOutput("PI");
2801 if (start
) TexOutput("SIGMA");
2804 if (start
) TexOutput("UPSILON");
2807 if (start
) TexOutput("PHI");
2810 if (start
) TexOutput("PSI");
2813 if (start
) TexOutput("OMEGA");
2816 // Binary operation symbols
2819 if (start
) TexOutput("<=");
2822 if (start
) TexOutput("<<");
2825 if (start
) TexOutput("SUBSET");
2828 if (start
) TexOutput("SUBSETEQ");
2831 if (start
) TexOutput("IN");
2834 if (start
) TexOutput("VDASH");
2837 if (start
) TexOutput("MODELS");
2841 if (start
) TexOutput(">=");
2844 if (start
) TexOutput(">>");
2847 if (start
) TexOutput("SUPSET");
2850 if (start
) TexOutput("SUPSETEQ");
2853 if (start
) TexOutput("NI");
2856 if (start
) TexOutput("DASHV");
2859 if (start
) TexOutput("PERP");
2862 if (start
) TexOutput("NEQ");
2865 if (start
) TexOutput("DOTEQ");
2868 if (start
) TexOutput("APPROX");
2871 if (start
) TexOutput("CONG");
2874 if (start
) TexOutput("EQUIV");
2877 if (start
) TexOutput("PROPTO");
2880 if (start
) TexOutput("PREC");
2883 if (start
) TexOutput("PRECEQ");
2886 if (start
) TexOutput("|");
2889 if (start
) TexOutput("~");
2892 if (start
) TexOutput("SIMEQ");
2895 if (start
) TexOutput("ASYMP");
2898 if (start
) TexOutput(":-)");
2901 if (start
) TexOutput(":-(");
2904 if (start
) TexOutput("SUCC");
2907 if (start
) TexOutput("SUCCEQ");
2910 if (start
) TexOutput("|");
2913 // Negated relation symbols
2915 if (start
) TexOutput("!=");
2918 if (start
) TexOutput("NOTIN");
2921 if (start
) TexOutput("NOTSUBSET");
2926 if (start
) TexOutput("<--");
2929 if (start
) TexOutput("<==");
2932 if (start
) TexOutput("-->");
2935 if (start
) TexOutput("==>");
2937 case ltLEFTRIGHTARROW
:
2938 if (start
) TexOutput("<-->");
2940 case ltLEFTRIGHTARROW2
:
2941 if (start
) TexOutput("<==>");
2944 if (start
) TexOutput("UPARROW");
2947 if (start
) TexOutput("UPARROW2");
2950 if (start
) TexOutput("DOWNARROW");
2953 if (start
) TexOutput("DOWNARROW2");
2955 // Miscellaneous symbols
2957 if (start
) TexOutput("ALEPH");
2960 if (start
) TexOutput("WP");
2963 if (start
) TexOutput("RE");
2966 if (start
) TexOutput("IM");
2969 if (start
) TexOutput("EMPTYSET");
2972 if (start
) TexOutput("NABLA");
2975 if (start
) TexOutput("SURD");
2978 if (start
) TexOutput("PARTIAL");
2981 if (start
) TexOutput("BOT");
2984 if (start
) TexOutput("FORALL");
2987 if (start
) TexOutput("EXISTS");
2990 if (start
) TexOutput("NEG");
2993 if (start
) TexOutput("SHARP");
2996 if (start
) TexOutput("ANGLE");
2999 if (start
) TexOutput("TRIANGLE");
3002 if (start
) TexOutput("CLUBSUIT");
3005 if (start
) TexOutput("DIAMONDSUIT");
3008 if (start
) TexOutput("HEARTSUIT");
3011 if (start
) TexOutput("SPADESUIT");
3014 if (start
) TexOutput("INFTY");
3017 if (start
) TexOutput("PM");
3020 if (start
) TexOutput("MP");
3023 if (start
) TexOutput("TIMES");
3026 if (start
) TexOutput("DIV");
3029 if (start
) TexOutput("CDOT");
3032 if (start
) TexOutput("AST");
3035 if (start
) TexOutput("STAR");
3038 if (start
) TexOutput("CAP");
3041 if (start
) TexOutput("CUP");
3044 if (start
) TexOutput("VEE");
3047 if (start
) TexOutput("WEDGE");
3050 if (start
) TexOutput("CIRC");
3053 if (start
) TexOutput("BULLET");
3056 if (start
) TexOutput("DIAMOND");
3059 if (start
) TexOutput("OSLASH");
3062 if (start
) TexOutput("BOX");
3065 if (start
) TexOutput("DIAMOND2");
3067 case ltBIGTRIANGLEDOWN
:
3068 if (start
) TexOutput("BIGTRIANGLEDOWN");
3071 if (start
) TexOutput("OPLUS");
3074 if (start
) TexOutput("OTIMES");
3077 if (start
) TexOutput("s");
3079 case ltBACKSLASHRAW
:
3080 if (start
) TexOutput("\\");
3083 if (start
) TexOutput("{");
3086 if (start
) TexOutput("}");
3090 if (start
) TexOutput(" ");
3097 // Called on start/end of argument examination
3098 bool DefaultOnArgument(int macroId
, int arg_no
, bool start
)
3104 if (arg_no
== 1 && start
)
3106 char *refName
= GetArgData();
3109 TexRef
*texRef
= FindReference(refName
);
3112 // Must strip the 'section' or 'chapter' or 'figure' text
3113 // from a normal 'ref' reference
3115 strcpy(buf
, texRef
->sectionNumber
);
3116 int len
= strlen(buf
);
3118 if (strcmp(buf
, "??") != 0)
3130 TexOutput(texRef
->sectionNumber
+ i
, TRUE
);
3135 TexOutput("??", TRUE
);
3136 sprintf(buf
, "Warning: unresolved reference %s.", refName
);
3140 else TexOutput("??", TRUE
);
3152 if (start
&& (arg_no
== 1))
3153 DocumentAuthor
= GetArgChunk();
3159 if (start
&& (arg_no
== 1))
3160 DocumentDate
= GetArgChunk();
3166 if (start
&& (arg_no
== 1))
3167 DocumentTitle
= GetArgChunk();
3171 case ltDOCUMENTCLASS
:
3172 case ltDOCUMENTSTYLE
:
3174 if (start
&& !IsArgOptional())
3176 DocumentStyleString
= copystring(GetArgData());
3177 if (strncmp(DocumentStyleString
, "art", 3) == 0)
3178 DocumentStyle
= LATEX_ARTICLE
;
3179 else if (strncmp(DocumentStyleString
, "rep", 3) == 0)
3180 DocumentStyle
= LATEX_REPORT
;
3181 else if (strncmp(DocumentStyleString
, "book", 4) == 0 ||
3182 strncmp(DocumentStyleString
, "thesis", 6) == 0)
3183 DocumentStyle
= LATEX_BOOK
;
3184 else if (strncmp(DocumentStyleString
, "letter", 6) == 0)
3185 DocumentStyle
= LATEX_LETTER
;
3186 else if (strncmp(DocumentStyleString
, "slides", 6) == 0)
3187 DocumentStyle
= LATEX_SLIDES
;
3189 if (StringMatch("10", DocumentStyleString
))
3191 else if (StringMatch("11", DocumentStyleString
))
3193 else if (StringMatch("12", DocumentStyleString
))
3196 OnMacro(ltHELPFONTSIZE
, 1, TRUE
);
3197 sprintf(currentArgData
, "%d", normalFont
);
3199 OnArgument(ltHELPFONTSIZE
, 1, TRUE
);
3200 OnArgument(ltHELPFONTSIZE
, 1, FALSE
);
3201 haveArgData
= FALSE
;
3202 OnMacro(ltHELPFONTSIZE
, 1, FALSE
);
3204 else if (start
&& IsArgOptional())
3206 MinorDocumentStyleString
= copystring(GetArgData());
3208 if (StringMatch("10", MinorDocumentStyleString
))
3210 else if (StringMatch("11", MinorDocumentStyleString
))
3212 else if (StringMatch("12", MinorDocumentStyleString
))
3218 case ltBIBLIOGRAPHYSTYLE
:
3220 if (start
&& !IsArgOptional())
3221 BibliographyStyleString
= copystring(GetArgData());
3227 if (start
&& !IsArgOptional())
3229 if (PageStyle
) delete[] PageStyle
;
3230 PageStyle
= copystring(GetArgData());
3238 if (start && !IsArgOptional())
3239 LeftHeader = GetArgChunk();
3245 if (start && !IsArgOptional())
3246 LeftFooter = GetArgChunk();
3252 if (start && !IsArgOptional())
3253 CentreHeader = GetArgChunk();
3259 if (start && !IsArgOptional())
3260 CentreFooter = GetArgChunk();
3266 if (start && !IsArgOptional())
3267 RightHeader = GetArgChunk();
3273 if (start && !IsArgOptional())
3274 RightFooter = GetArgChunk();
3282 if (start
&& !IsArgOptional())
3284 char *citeKeys
= GetArgData();
3286 char *citeKey
= ParseMultifieldString(citeKeys
, &pos
);
3289 AddCitation(citeKey
);
3290 TexRef
*ref
= FindReference(citeKey
);
3293 TexOutput(ref
->sectionNumber
, TRUE
);
3294 if (strcmp(ref
->sectionNumber
, "??") == 0)
3297 sprintf(buf
, "Warning: unresolved citation %s.", citeKey
);
3301 citeKey
= ParseMultifieldString(citeKeys
, &pos
);
3304 TexOutput(", ", TRUE
);
3313 if (start
&& !IsArgOptional())
3315 char *citeKey
= GetArgData();
3316 AddCitation(citeKey
);
3321 case ltHELPFONTSIZE
:
3325 char *data
= GetArgData();
3326 if (strcmp(data
, "10") == 0)
3328 else if (strcmp(data
, "11") == 0)
3330 else if (strcmp(data
, "12") == 0)
3340 TexOutput(" ??", TRUE
);
3347 if (start
&& arg_no
== 1)
3349 char *data
= GetArgData();
3350 ParSkip
= ParseUnitArgument(data
);
3357 if (start
&& arg_no
== 1)
3359 char *data
= GetArgData();
3360 ParIndent
= ParseUnitArgument(data
);
3367 return OnArgument(ltIT
, arg_no
, start
);
3370 case ltSPECIALDOUBLEDOLLAR
:
3372 return OnArgument(ltCENTER
, arg_no
, start
);
3376 case ltPARAGRAPHSTAR
:
3377 case ltSUBPARAGRAPH
:
3378 case ltSUBPARAGRAPHSTAR
:
3380 return OnArgument(ltSUBSUBSECTION
, arg_no
, start
);
3386 OnInform(GetArgData());
3392 TexOutput(" (", TRUE
);
3394 TexOutput(")", TRUE
);
3397 case ltBIBLIOGRAPHY
:
3405 if ((fd
= fopen(TexBibName
, "r")))
3411 TexOutput(smallBuf
);
3419 OnInform("Run Tex2RTF again to include bibliography.");
3422 // Read in the .bib file, resolve all known references, write out the RTF.
3423 char *allFiles
= GetArgData();
3425 char *bibFile
= ParseMultifieldString(allFiles
, &pos
);
3429 strcpy(fileBuf
, bibFile
);
3430 wxString actualFile
= TexPathList
.FindValidPath(fileBuf
);
3431 if (actualFile
== "")
3433 strcat(fileBuf
, ".bib");
3434 actualFile
= TexPathList
.FindValidPath(fileBuf
);
3436 if (actualFile
!= "")
3438 if (!ReadBib((char*) (const char*) actualFile
))
3441 errBuf
.Printf(".bib file %s not found or malformed", (const char*) actualFile
);
3442 OnError((char *)errBuf
.c_str());
3448 errBuf
.Printf(".bib file %s not found", fileBuf
);
3449 OnError((char *)errBuf
.c_str());
3451 bibFile
= ParseMultifieldString(allFiles
, &pos
);
3454 ResolveBibReferences();
3456 // Write it a new bib section in the appropriate format.
3457 FILE *save1
= CurrentOutput1
;
3458 FILE *save2
= CurrentOutput2
;
3459 FILE *Biblio
= fopen(TexTmpBibName
, "w");
3460 SetCurrentOutput(Biblio
);
3463 if (wxFileExists(TexTmpBibName
))
3465 if (wxFileExists(TexBibName
)) wxRemoveFile(TexBibName
);
3466 wxRenameFile(TexTmpBibName
, TexBibName
);
3468 SetCurrentOutputs(save1
, save2
);
3475 if (start
&& (arg_no
== 3))
3485 if (start
&& (arg_no
== 1))
3487 char *s
= GetArgData();
3490 char *s1
= copystring(s
);
3492 for (i
= 0; i
< (int)strlen(s
); i
++)
3493 s1
[i
] = toupper(s
[i
]);
3506 if (start
&& (arg_no
== 1))
3508 char *s
= GetArgData();
3511 char *s1
= copystring(s
);
3513 for (i
= 0; i
< (int)strlen(s
); i
++)
3514 s1
[i
] = tolower(s
[i
]);
3527 if (start
&& (arg_no
== 1))
3529 char *s
= GetArgData();
3532 char *s1
= copystring(s
);
3534 for (i
= 0; i
< (int)strlen(s
); i
++)
3535 s1
[i
] = toupper(s
[i
]);
3546 case ltPOPREF
: // Ignore second argument by default
3548 if (start
&& (arg_no
== 1))
3558 return ((convertMode
== TEX_XLP
) ? FALSE
: TRUE
);
3561 return ((convertMode
!= TEX_XLP
) ? FALSE
: TRUE
);
3564 return ((convertMode
== TEX_HTML
) ? FALSE
: TRUE
);
3567 return ((convertMode
!= TEX_HTML
) ? FALSE
: TRUE
);
3570 return (((convertMode
== TEX_RTF
) && !winHelp
) ? FALSE
: TRUE
);
3573 return (!((convertMode
== TEX_RTF
) && !winHelp
) ? FALSE
: TRUE
);
3575 case ltWINHELPIGNORE
:
3576 return (winHelp
? FALSE
: TRUE
);
3579 return (!winHelp
? FALSE
: TRUE
);
3594 case ltADDTOCOUNTER
:
3595 case ltADDCONTENTSLINE
:
3599 case ltBASELINESKIP
:
3608 case ltPAGENUMBERING
:
3620 case ltTHISPAGESTYLE
:
3623 case ltEVENSIDEMARGIN
:
3624 case ltODDSIDEMARGIN
:
3626 case ltMARGINPARWIDTH
:
3627 case ltMARGINPARSEP
:
3628 case ltMARGINPAREVEN
:
3629 case ltMARGINPARODD
:
3630 case ltTWOCOLWIDTHA
:
3631 case ltTWOCOLWIDTHB
:
3632 case ltTWOCOLSPACING
:
3639 case ltSETHOTSPOTCOLOUR
:
3640 case ltSETHOTSPOTCOLOR
:
3641 case ltSETHOTSPOTUNDERLINE
:
3642 case ltSETTRANSPARENCY
:
3645 case ltBACKGROUNDCOLOUR
:
3646 case ltBACKGROUNDIMAGE
:
3648 case ltFOLLOWEDLINKCOLOUR
:
3655 case ltINSERTATLEVEL
:
3659 case ltSUPERTABULAR
:
3668 if (arg_no
== 2) return TRUE
;
3675 if (arg_no
== 2) return TRUE
;
3679 case ltDEFINECOLOUR
:
3682 static int redVal
= 0;
3683 static int greenVal
= 0;
3684 static int blueVal
= 0;
3685 static char *colourName
= NULL
;
3692 if (colourName
) delete[] colourName
;
3693 colourName
= copystring(GetArgData());
3698 redVal
= atoi(GetArgData());
3703 greenVal
= atoi(GetArgData());
3708 blueVal
= atoi(GetArgData());
3709 AddColour(colourName
, redVal
, greenVal
, blueVal
);
3725 if (IsArgOptional())