summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-01-13 23:56:03 (GMT)
committerFred Drake <fdrake@acm.org>2004-01-13 23:56:03 (GMT)
commit4977ff0cf52b573bcbe9b20dba74a1a78a8e9966 (patch)
tree7c51a74594e155435f1950cc4f1ce055e21e8880
parent3f26af765d0e892f04882c9c7d3b4950bdde5569 (diff)
downloadcpython-4977ff0cf52b573bcbe9b20dba74a1a78a8e9966.zip
cpython-4977ff0cf52b573bcbe9b20dba74a1a78a8e9966.tar.gz
cpython-4977ff0cf52b573bcbe9b20dba74a1a78a8e9966.tar.bz2
add a note about memory consumption and LaTeX
closes SF bug #721157
-rw-r--r--Doc/README17
1 files changed, 17 insertions, 0 deletions
diff --git a/Doc/README b/Doc/README
index a69e5c2..6b6a286 100644
--- a/Doc/README
+++ b/Doc/README
@@ -143,6 +143,23 @@ To create HTML files:
<http://www.latex2html.org/>.
+LaTeX (or pdfLaTeX) ran out of memory; how can I fix it?
+--------------------------------------------------------
+
+This is known to be a problem at least on Mac OS X, but it has been
+observed on other systems in the past.
+
+On some systems, the default sizes of some of the memory pools
+allocated by TeX needs to be changed; this is a configuration setting
+for installations based on web2c (most if not all installations).
+This is usually set in a file named texmf/web2c/texmf.cnf (where the
+top-level texmf/ directory is part of the TeX installation). If you
+get a "buffer overflow" warning from LaTeX, open that configuration
+file and look for the "main_memory.pdflatex" setting. If there is not
+one, you can add a line with the setting. The value 1500000 seems to
+be sufficient for formatting the Python documetantion.
+
+
What if Times fonts are not available?
--------------------------------------