How would I cross-reference a function generated by autodoc in Sphinx?
I am using the Sphinx autodoc feature to generate documentation based on the docstrings of my Python library. The syntax for cross referencing is found here A label must precede the section in order to allow that section to be referenced from other areas of the documentation. What I have is a .rst (ReStructeredText) file for one of my classes. It uses .. autoclass:: classname :members: To generate documentation for the class. My question is, how would I reference the auto-generated methods of the class from another .rst document in the documentation? If I try to place a label within the method