The error *is* probably a permissions error.
Eddie
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuIf it works for you, I can put it on as a demo again.Quote
commenting out usepackage[T1]{fontenc} caused lots of error regarding textquotedblQuote
commenting out usepackage{amsmath,amssymb,amsfonts,textcomp} causes errors re textquotesingle.
I'll add html2latex.lsp to my list of possible projects.Quote
usepackage{newcent}
Editing a text file would be fine, as long as everything we do is with standard tools. I do not want add new dependencies, incompatibilities etc.. The current method using HTML and OpenOffcie at least works on all platforms. We will do it but is has to be simple.Quote
./doc.lsp quickref.txt
.h 0 Introduction
.p this is a paragraph
.h 1 Section One
.h 2 Subsection
...
<html>
<head>
<title>manual</title>
<style>
...
</style>
</head>
<body>
<h1>Contents</h1>
<ol type="I">
<li>Introduction</li>
<li>Section One</li>
...
</ol>
<p style="newpage">
<h1>Introduction</h1>
<p>this is a paragraph</p>
<h2>Section One</h2>
...
documentclass{article}
usepackage{newcent}
usepackage[hyperref stuff ...]{hyperref}
usepackage[margin=1in]{geometry}
...
begin{document}
tableofcontents
newpage
chapter{Introduction}
this is a pragraph
section{Section One}
...