What tools are used to write documentation?
Specifically for
- User docs
- System administration
- Development
I'm looking for software such MS Word, wiki, TeX (LaTeX, LyX) and for automated tools.
|
What tools are used to write documentation? Specifically for
I'm looking for software such MS Word, wiki, TeX (LaTeX, LyX) and for automated tools. |
|||
|
|
|
I recently discovered Dr. Explain which is great for creating user interface documentation. It goes in and breaks all the user interface elements (buttons, menu items, edit boxes, etc.) out from your running application and then extracts any meta information it can from them to start your documentation (see screen shot). Then all you have to do is remove or tweak the items it found and edit the descriptions. Produces really professional user interface documentation really quickly. It also has all the other end user help documentation features you would expect. This screen shot shows you one of the images it creates for you. This was created by pointing it at a preferences window. It then adds the little numbered blue boxes on the visible user controls. It also extracts the text and control type information (button, check box, etc.) as well as other meta information. These images can be made clickable too, to allow drill down from the screen shot. This feature really blew me away. It might not be the best over all, but this one feature was pretty amazing. |
|||||||
|
|
We've always preferred LaTeX because our docs have a ton of heavy math... But, more importantly, it's plain text which means it's really easy to manage with our VCS (CVS, SVN, Git, etc.) and it can easily live right there with the code -- so, there's no excuse for not updating the documentation as you develop. As a nod to Kristopher, we're a fairly researchy organization (though not a .edu)... |
|||
|
|
|
I use Visio for generating UML docs and timelines. For me, these are all done during design when I'm trying to figure out how I want things organized, or how things should work. Then, (hopefully) they're updated after the implementation is done so that they match what actually was done (implementation never matches design exactly!). For code documentation I use a few tools, depending on the language. All of these use variations on the javadoc-style comments, which I like. Visual Studio has a built-in documentation tool for C# (and probably other .Net languages) that uses XML-like comments. I believe others have mentioned that. For the rest of our documentation (Network protocol, etc), we use a corporate Wiki. We're using Confluence, though there are plenty of Wiki choices out there. We find using wikis to be quite useful, as it's easy for anyone to update the docs when the need to, and it's also easily accessible (no passing Word files around). |
|||
|
|
|
With C# and .Net we have XML code comments that are compiled into help files using Sandcastle. For user and system documentation we have a Wiki - specifically Confluence. |
|||
|
Here's what we use:
|
|||
|
|
|
We also use Sandcastle and GhostDoc, but for UML stuff on the Windows platform, there I have found nothing better in the "free" pricepoint than StarUML. StarUML is a tremendous value. Development seems to have stagnated for the past 3 years, but it's a remarkably stable tool. I have used other freebies (like ArgoUML), but they have not proven as fast or as fully featured. It's not a replacement for a good commercial tool, but in most places I have worked, no one wants to shell out the money for something like Enterprise Architect. |
||||
|
|
|
For user docs and most other forms of documentation, I see MS Word being used most often. For development documentation, specifically API docs, tools like Javadoc and Doxygen are used a lot. Wikis are good too. I don't see TeX or LaTeX used much outside of academic or research communities. |
|||
|
|
|
Unfortunately I'm usually stuck using notepad. |
|||||
|
|
Confluence and JavaDoc here. Confluence for non project specific stuff like architecture, how-to's, tricks, code samples, some bug reporting, etc, etc. If it's project specific and not suitable for JavaDoc, I have simply been adding plain text *.txt files to the projects as supporting documentation. It's worked ok so far. |
|||
|
|
|
We are way into a wiki (media wiki) for everything from design to end user docs as well as documents detailing our lab setups and who is using what machines. The end user stuff gets imported into acrobat and gets generated into nice PDF's for users (and I think real paper docs still). We use Borland Together for UML modeling (and code generation, but that's another post). We point our testers at the wiki when they go to test a new feature and then they also get to write bugs against the docs as well as the product. I was skeptical at first when we started doing it this way (we used to have writers that we would work with), but have become a big fan. Our users seem to like it as well. |
|||
|
|
|
I write in Markdown, the same formatting syntax we use on Stack Overflow. Because the documents are plain text, they can live alongside code in version control. That's useful. I render the documents to HTML and PDF with the swiss army knife Pandoc. With a short stylesheet, these look better than documents from word processors. If we're talking about technical documentation, in my mind there are two separate kinds of documentation, of which you should have both. For libraries and APIs you have auto-generated documentation describing the function calls and types this is useful for refernece, but you also need prosy user guide/tutorial style documentation that can be read top to bottom. :
Addendum: You can use Sphinx for both kinds of documentation. The output is beautiful |
||||
|
|
|
A couple people have already mentioned the C# xml docuementation, and others have mentioned doxygen for C/C++/Java, but I would like to remind everyone that it also supports C# style documentation. It can generate documentation in html, postscript, pdf, and man pages, so you don't need to be stuck with Sandcastle help files. |
|||
|
|
|
Word and Visio are obviously the de-facto standard tools. But to make them truly useful for technical documentation, you should have very good templates set up that make formatting it easy. The less you have to think about that, the more you can think about the content. I use a Word document with tons of preset styles... things like section headers, body formatting, lists, code blocks, etc. In Visio, I use a standard set of Shapes for each type of diagram I want to create (high level system diagram, user interface, workflow, etc.) I'm actually quite proud of my Word template. It's very clean. I'll email it to anyone who wants a copy. |
|||
|
If you would prefer a special editor for latex, I would suggest texmaker (for linux) or you could just go with emacs ;) |
|||
|
|
|
For writing documentation for end users, there are a lot things to consider before you start looking at a particular tool. These include:
Answering these questions will help you to compare your tool options. I wrote a blog post that goes into more detail here. If you’re ready to start looking at tools than I suggest Convey. Convey appears inside your website or application and figures out the right Help topics to show your customers when they have a question. Full disclosure: I’m the founder of Red Monocle, the company that makes Convey. I also happen to think it’s a really good tool :) |
||||
|
|