Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anyone come across a tutorial to create documentation for functions you create in Mathematica? I'm trying to organize some functions that I have written but so far I'm doing a terrible job. I would really like to have a file explicitly for the functions and one for the documentation and somehow add a path to the Mathematica documentation so that Mathematica can also search for it.

Take the documentation for the Sin function for instance:

doc

When you click on the arrows it opens a notebook with information on the Sin function. I tried copying the contents of that notebook and pasting in a fresh notebook so that I can edit it but I can't modify the contents.

I really like Mathematica's format for the documentation and I would like to document my functions in the same way for future reference. Does any one know how to document functions the same way Mathematica does?

share|improve this question
2  
Documentation pages that are fully integrated into Mathematica Help may be created using Workbench. There is a nice screencast tutorial (by Adam Berry) available here. Other Workbench screencast tutorials are available here – TomD Jun 29 '11 at 8:20
1  
I think this question is partially relevant: "Convenient way to add inline formatting to usage Messages". – Alexey Popkov Jun 29 '11 at 13:53
@Alexey, I think what you posted there is pretty relevant. I am trying to write some C functions and I would like to be able to format the usage tag. I'm really wondering how to put a Hyperlink in the messages too. I was thinking about Workbench after reading all the answers but I really don't feel like filling out another form with Wolfram just to download it. – jmlopez Jun 29 '11 at 16:50
1  
@jmlopez It is as easy to embed a hyperlink into a string as any other in-line formatting (boxes). Try for example: "Here is embedded hyperlink: "<>ToString[Hyperlink["Wolfram Research, Inc.", "http://www.wolfram.com"],StandardForm]. – Alexey Popkov Jun 30 '11 at 7:34
1  
@Alexey, awesome. I may not need to use a shorcuts to change the options. Your links lead me to this: FrontEndExecute[FrontEndToken["EditStyleDefinitions"]]. Same as going to Format->EditStyleSheet. Then enter the name of the Style you want to edit. For instance, you can modify the default behaviour or Usage and ObjectName. When you enter those names a cell will appear there then go to Format->ObjectOptions and make them editable. Now when you copy and paste things from the documentation you'll be able to edit them. – jmlopez Jul 1 '11 at 18:04
show 6 more comments

3 Answers

up vote 6 down vote accepted

Perhaps this or this will be useful.

share|improve this answer

You can use Mathematica's workbench to create documentation.

The videos here are also good in order to start using Wolfram Workbench.

share|improve this answer

I think you're looking for ::usage. Have a look at tutorial/DocumentationConstructs in the Documentation Center.

share|improve this answer
2  
I have used ::usage to get a short description. But what I'm really interested in is how to build the whole documentation page. In that way I will be able to write more information and examples about the functions just like they do with the rest of the Mathematica functions. – jmlopez Jun 29 '11 at 5:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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