mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-27 16:30:41 +02:00
+ Fixed subsection/section writing
This commit is contained in:
parent
2d6779dac5
commit
a8a32ac06f
@ -495,18 +495,18 @@ procedure TLatexWriter.StartSection(SectionName : String);
|
||||
begin
|
||||
WriteCommentLine;
|
||||
WriteComment(SectionName);
|
||||
WriteComment('\section{'+EscapeText(SectionName)+'}');
|
||||
Writeln('\section{'+EscapeText(SectionName)+'}');
|
||||
end;
|
||||
|
||||
procedure TLatexWriter.StartSubSection(SubSectionName : String);
|
||||
begin
|
||||
WriteComment(SubSectionName);
|
||||
Write('\subsection{'+EscapeText(SubSectionName)+'}');
|
||||
Writeln('\subsection{'+EscapeText(SubSectionName)+'}');
|
||||
end;
|
||||
|
||||
procedure TLatexWriter.StartSubSubSection(SubSubSectionName : String);
|
||||
begin
|
||||
Write('\subsubsection{'+EscapeText(SubSubSectionName)+'}');
|
||||
Writeln('\subsubsection{'+EscapeText(SubSubSectionName)+'}');
|
||||
end;
|
||||
|
||||
procedure CreateLaTeXDocForPackage(APackage: TPasPackage; AEngine: TFPDocEngine);
|
||||
@ -690,7 +690,10 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.10 2005-02-14 17:13:39 peter
|
||||
Revision 1.11 2005-03-10 20:32:16 michael
|
||||
+ Fixed subsection/section writing
|
||||
|
||||
Revision 1.10 2005/02/14 17:13:39 peter
|
||||
* truncate log
|
||||
|
||||
Revision 1.9 2005/01/12 21:11:41 michael
|
||||
|
Loading…
Reference in New Issue
Block a user