Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 77723 invoked by uid 500); 5 Jun 2003 16:09:59 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 77682 invoked by uid 500); 5 Jun 2003 16:09:59 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 5 Jun 2003 16:09:58 -0000 Message-ID: <20030605160958.71439.qmail@icarus.apache.org> From: slive@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/docs/manual/style/latex TODO X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N slive 2003/06/05 09:09:57 Modified: docs/manual/style/latex TODO Log: A couple notes on what is left, along with some hints for people who are good with xsl but not latex. Revision Changes Path 1.3 +40 -7 httpd-2.0/docs/manual/style/latex/TODO Index: TODO =================================================================== RCS file: /home/cvs/httpd-2.0/docs/manual/style/latex/TODO,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -b -u -r1.2 -r1.3 --- TODO 5 Jun 2003 15:16:27 -0000 1.2 +++ TODO 5 Jun 2003 16:09:57 -0000 1.3 @@ -5,13 +5,38 @@ * directive index * quick reference * faq + [This is a good job for someone who wants to get familiar with LaTeX, + since you can just take the existing LaTeX as an example, and combine + it with the xslt stuff under style/xsl/.] - Fix tables Perhaps we need to add some xml hints about the size of different - columns in the source files. For example: - -
... + columns in the source files. + + Here is a proposal: + + xml: + + + + +
123
+ + latex: + \begin{tabular}{lll} % number of "l"s matches the number of s. + \begin{minipage}{.2\linewidth} + 1 + \end{minipage} & + \begin{minipage}{.2\linewidth} + 2 + \end{minipage} & + \begin{minipage}{.6\linewidth} + 3 + \end{minipage} \\ % And continue in the same way if there are more rows + \end{tabular} + + This should be enough to get an xsl expert started. - Images @@ -25,13 +50,21 @@ " with \texttt{"} or something, so that the quotes are all straight. - Add hyperlinks for directives and modules (for online use only, - not page number references). - -- Reduce the size of the pdf (both bytes and pages) in any way possible. + not page number references). This will require the \hyperlink + and \hypertarget macros from hyperref. see: + http://www.tug.org/applications/hyperref/manual.html#QQ1-1-3 - Hundreds of other little problems with presentation, cross-referencing, etc. - Fix build system -- Cleanup xsl to make it more readable. \ No newline at end of file +- Cleanup xsl to make it more readable and add licenses. Almost everything + that is currently in latex.xsl should probably be moved to common.xsl. + There may be a license problem with the atbeginend.sty file, since + latex style files rarely have explict licenses. At worst, we can + drop this and manually adjust the relevant spacing. + +- Reduce the size of the pdf (both bytes and pages) in any way possible. + +- Translations. \ No newline at end of file