On 2011-02-05, cognacc wrote:
> Hi

> I have been working on getting sphinx to work with the memoir class
> instead.

> memoir.cls - sphinxmemoir.cls
> ------------------------------

> sphinx prepends sphinx to the class name given in conf.py
> under *latex_elements*.

Did you try

  latex_documents = [
                     (startdocname, 
                     targetname, 
                     title, 
                     author, 
                     memoir,          # <-- documentclass
                     toctree_only)
                    ]

?


> color and xcolor problem
> --------------------------

> color package is used by @sphinx?,
> we like to be able to specify xcolor, but they conflict,

How do they conflict? The minimal LaTeX example::


   \documentclass{minimal}
   \usepackage{xcolor}
   \usepackage{color}
   \begin{document}
   foo
   \end{document}

compiles fine without any error or warning.



> Fonts
> ----------

> \rm is @?undefined?

\rm is strongly deprecated.
Use \rmfamily (switch) or \textrm{upright serifed text} (command).

> Alias
> ----------

> Is it possible to alias commands?

Yes, with \newcommand, \renewcommand, \def, or \let.

Günter

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-dev" group.
To post to this group, send email to sphinx-dev@googlegroups.com.
To unsubscribe from this group, send email to 
sphinx-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.

Reply via email to