vote up 7 vote down star
2

Not just documenting code (I'm using Javadocs already), but documentation of the algorithms and creating a manual of some sort.

Do people just use Word? What programs or frameworks are available, especially for different ways to document algorithms, etc?

flag

78% accept rate

19 Answers

vote up 6 vote down check

We use a wiki (currently MoinMoin). For high-level or key design elements we often do UML diagrams. I prefer StarUML for this.

link|flag
+1 for being first to say wiki :) – Dan Apr 1 at 14:48
vote up 1 vote down

org-mode

link|flag
vote up 2 vote down

a mix of lyx + doxygen + graphviz (for the uml, db, etc diagrams)

link|flag
vote up 1 vote down

Wiki, definitely.

By the way, the best documentation is the one you don’t write. Don’t write documentation that no one reads.

After saying goodbye to Word and Sharepoint and switching to Wiki, most of the folks on the team used the word “liberated”.

If your sales dept. or else need some fancy docs, there is a way to export wiki to pdf. (I didn’t try this myself mind you.).

link|flag
vote up 4 vote down

Wiki.

Often they have revision control, search capability, open for anyone to correct and a single online storage.

link|flag
+1. I believe the strength of using a wiki for documentation (especially that which is available for internal use in a company) is the ability to easily hyperlink to other parts of a wiki. If done right, it'll be easily browsable for anyone looking for information. – Spoike Apr 1 at 15:29
vote up 0 vote down

I come from an instructional design background, so this might be overkill. You might want to take a look at the Adobe Technical Communications Suite.

If you're on a budget, I agree with those who have already mentioned Open Office as an alternative.

This is a little off topic, but, as an EDI specialist, I also use and am pleased with Edifecs SpecBuilder for creating documentation. If anyone here is or plans to be involved in electronic data interchange, it is definitely worth looking at.

link|flag
vote up 1 vote down

++ to JadeMason

Use Word.

  1. Learn styles
  2. Take the web tutorials on MS's office website to learn Word. It'll improve your life.
  3. Everyone (that wants to) can read and edit a Word file. I.e. Just because you know Latex doesn't mean anyone else at your company does.
  4. Word is the easiest-to-use editor that allows for hyperlinking, images, tables, sub-documents, etc.
  5. It's probably already installed. Every job I start hands me a PC with XP, Office, and Outlook on it.
link|flag
vote up 2 vote down

I just use doxygen.
It's great for c++ :)
It also supports many other languages and features.
I hope it's helpful :)

link|flag
doxygen supports many languages too :-) – Luc M Apr 1 at 19:41
vote up 5 vote down

MS Word - If you can train yourself to slavishly use styles (and be sure to create your own custom styles, don't just rely on those that come with the product) you'll find that you can quickly generate documentation that is both well structured, well formatted, and useful. Add a print to PDF utility like PrimoPDF and you can easily generate documentation to distribute.

link|flag
vote up 0 vote down

I'm using Doc-O-Matic. It allows me to use all my JavaDoc (or in my case DelphiDoc) comments and write my own chapters as complement. I can also generate help files (html and win32), word documents, pdf right from one source.

link|flag
vote up 0 vote down

For proposals, specifications, design docs etc. I use Open Office. For end-user documentation, such as help files, I use Help & Manual, but am currently thinking of switching to an Open Doc solution.

link|flag
vote up 0 vote down

I use POD (and therefore notepad) for documentation. It's very convenient for Perl developers, anyway.

link|flag
vote up 0 vote down

I'm using Word but i'm not happy with it. Hopefully this question will shine some light on the alternatives.

link|flag
vote up 0 vote down

I use the same text editor I normally use (because I'm used to its shortcuts, and it has autocompletion). If I'm at work, I'll then cut and paste into Word to make it fit with company documentation templates. If not, I'll just leave it as a text file/wiki page.

link|flag
vote up 0 vote down

I'm a big fan of reStructuredText. It integrates most closely with Python but it's fine for anything, it's nicely readable as plain text, it produces decent documents -- potentially very nice documents with some CSS magic -- and it works pretty well anywhere.

link|flag
vote up 2 vote down

Any of the TeX variations. I like generating nice PDF documents to distribute, so I find LaTeX (or any other TeX distribution) to be perfect for that.

link|flag
vote up 1 vote down

If I see the word "manual," my immediate response will always be TeX.

link|flag
vote up 1 vote down

I'm a big fan of Vim.

Or if you want to get hardcore, you can use troff or LaTeX.

link|flag
vote up 2 vote down

Notepad.

Seriously

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.