From: Joshua Slive Date: Thu, 5 Jun 2003 16:09:57 +0000 (+0000) Subject: A couple notes on what is left, along with some hints for people who X-Git-Tag: pre_ajp_proxy~1565 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9c9d17673e184805be9c0bbf6e5e81eb7c303c2;p=thirdparty%2Fapache%2Fhttpd.git A couple notes on what is left, along with some hints for people who are good with xsl but not latex. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100174 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/style/latex/TODO b/docs/manual/style/latex/TODO index 3fcc5404cd3..fb0dfb7db06 100644 --- a/docs/manual/style/latex/TODO +++ b/docs/manual/style/latex/TODO @@ -5,13 +5,38 @@ Some things that need to be done with the LaTeX transforms: * 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 @@ Some things that need to be done with the LaTeX transforms: " 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