Themken: I remember someone I know well ran into the length limit of Wordpad, Annoying to lose a whole chapter due to ******** bad software. This was around the turn of the millenium though.
Turn of the millennium, you still had windows 98/ME and windows was running on usually 64Mb or less... not really counting Virtual Memory.
In 20010 when tried to do a very large image for primes found the limit of the image was about 16k in each direction, so i can easily see limits being stuck there. But for word? Hmmm i'd wonder how the formatting was in it.
16bit limitations would have suggested 65,536 characters. Add formatting, probably it's own table/entry so it doesn't take up extra space for the 90% of text that's untouched. I can see they might raise it to say 24bit (16Mb) but that's a REAAAALLY long text document. A bit too long. An average softbook fiction book is probably 200-300k and usually under 300 pages.
The main reason to put limitations is either register limits (
16bit for example to 32k or 64k blocks) or so when it tries to allocate more memory it doesn't crash outright, especially with such limited memory at the time. In programming C you'd have malloc, then you'd have realloc. Malloc allocates space, realloc tries to extend the space if it can without moving it (if there's empty space at the end). But when you exceed say half the memory of the space, there's a chance it could crash outright, as it can't allocate a larger block and move the data then free the older block.
Another way around it is if it internally splits the file into chunks and then navigates the chunks, and only when you export does it rebuild it to a single file, so you'd have several 100k blocks or something, or some arbitrary thing like 100 pages of data, pictures and formatting.
kai2: Ultimately I'd prefer software that can export in multiple formats for various publishing options (physical, eBooks, etc.).
I'm hoping to move a novel in Open Office (word processor) over to a more specific formatting software. I'm also hoping to add my illustrations to the text (ie G.R.R. Martin's
A Knight of the Seven Kingdoms).
Not long ago when i was converting a bunch of ebooks, i found one that converts between like 10 formats, i usually exported as htmlx (
just html but in a zip file).
But other than the container type, it's either going to be images (
comicbook like), or likely some type of html so it uses a normal browser to display everything.
PDF i've heard is a stripped down limited version of Postscript (
language for printers) and while popular it's hard to switch between formats, so it's best as a final product. But you probably won't be editing in PDF.
For now just go with Open Office Writer, it has a lot of features like if you use headers for each chapter, it can generate a TOC for you. Should export to html and most other formats fairly easily.