[LON-CAPA-cvs] cvs: doc /help course.manual.texxml spreadsheet.manual.texxml texxml2latex.pl

bowersj2 lon-capa-cvs@mail.lon-capa.org
Wed, 31 Jul 2002 14:55:11 -0000


bowersj2		Wed Jul 31 10:55:11 2002 EDT

  Removed files:               
    /doc/help	spreadsheet.manual.texxml 

  Modified files:              
    /doc/help	course.manual.texxml texxml2latex.pl 
  Log:
  Merging spreadsheet and course manuals. minor cleanup in tex generation.
  
  
  
Index: doc/help/course.manual.texxml
diff -u doc/help/course.manual.texxml:1.1 doc/help/course.manual.texxml:1.2
--- doc/help/course.manual.texxml:1.1	Tue Jul 30 13:57:08 2002
+++ doc/help/course.manual.texxml	Wed Jul 31 10:55:11 2002
@@ -1,5 +1,5 @@
 <texxml>
-	<file name="Course_Management_Title_Page.tex" />
+	<file name="Course_Manual_Title_Page.tex" />
 
 	<section name="Managing the Class List">
 		<subsection name="Class List Management">
@@ -59,5 +59,73 @@
 				<file name="Course_Student_Work.tex" />
 				</subsection>
 			</section>
+
+	<section name="Introduction to the Spreadsheet">
+		<file name="Spreadsheet_About.tex"/>
+		<subsection name="Spreadsheet Organization">
+			<file name="Spreadsheet_Levels.tex" />
+			<file name="Spreadsheet_Export_Row.tex" />
+			<file name="Spreadsheet_Template_Row.tex" />
+			</subsection>
+		</section>
+
+	<section name="Using the Spreadsheet">
+		<subsection name="How the Spreadsheet Works">
+			<tex content="(This section is particularly haphazard and could use a well-written overview."/>
+			<file name="Spreadsheet_Import_Values.tex" />
+			<file name="Spreadsheet_Symbolic_Names.tex" />
+			<file name="Spreadsheet_Problem_Weight.tex" />
+			<file name="Spreadsheet_Parms.tex" />
+			</subsection>
+		<subsection name="Recalculating the Spreadsheet">
+			<file name="Spreadsheet_Completely_Recalc.tex" />
+			</subsection>
+		<subsection name="Specifying Cells">
+			<file name="Spreadsheet_Specifying_Cells.tex" />
+			<file name="Spreadsheet_Ranges.tex" />
+			</subsection>
+		<subsection name="Using Cells">
+			<subsubsection name="Lists">
+				<file name="Spreadsheet_Lists.tex" />
+				</subsubsection>
+			</subsection>
+		<subsection name="Available Functions">
+			<file name="Spreadsheet_Functions.tex" />
+			<file name="Spreadsheet_Col_Sum.tex" />
+			<subsubsection name="? :">
+				<file name="Spreadsheet_Ternary_Operator.tex" />
+				</subsubsection>
+			</subsection>
+		<subsection name="Handling Multi-part Problems">
+			<file name="Spreadsheet_Op_On_All_Problem_Parts.tex" />
+			<file name="Spreadsheet_Tries.tex" />
+			</subsection>
+		</section>
+
+	<section name="Troubleshooting and Tips">
+		<subsection name="Common Error Messages">
+			<subsubsection name="Max Depth Exceeded">
+				<file name="Spreadsheet_Max_Depth_Exceeded.tex" />
+				</subsubsection>
+		<subsection name="Common Problems">
+			<subsubsection name="Empty Rows Showing">
+				<file name="Spreadsheet_Empty_Rows.tex" />
+				</subsubsection>
+			<subsubsection name="Out-of-Order Rows">
+				<file name="Spreadsheet_OOO_Rows.tex" />
+				</subsubsection>
+			<subsubsection name="Changes to Grading Scheme">
+				<file name="Spreadsheet_Changes_To_Grading.tex" />
+				</subsubsection>
+			</subsection>
+
+		<subsection name="Tips">
+			<subsubsection name="Alternate View">
+				<file name="Spreadsheet_Alternative_View.tex" />
+				</subsubsection>
+			<subsubsection name="Changing Student Spreadsheets">
+				<file name="Spreadsheet_Student_Visible.tex" />
+				</subsubsection>
+		</section>
 
 	</texxml>
Index: doc/help/texxml2latex.pl
diff -u doc/help/texxml2latex.pl:1.2 doc/help/texxml2latex.pl:1.3
--- doc/help/texxml2latex.pl:1.2	Wed Jul 17 11:47:15 2002
+++ doc/help/texxml2latex.pl	Wed Jul 31 10:55:11 2002
@@ -70,13 +70,14 @@
 	    my $file = $attr->{'name'};
 	    open (LATEX_FILE, $dirprefix . $file);
 	    print <LATEX_FILE>;
+	    print "\n\n";
 	}
 
 	if ($tag eq 'tex')
 	{
-	    print "\n";
+	    print "\n\n";
 	    print $attr->{'content'};
-	    print "\n";
+	    print "\n\n";
 	}
     }
 }