Set Latex footnote hanging without using footmisc package
Your document's footnote markers currently aren't active hyperlinks to the corresponding footnotes because you're loading footmisc
after hyperref
. If you load footmisc
before hyperref
, you should get the expected behavior.
Because hyperref
has to perform various demanding jobs to convert the cross-referencing call-outs, incl. footnote markers, into hyperlinks, it's important to load it after most packages that also affect LaTeX's cross-referencing abilities. A major exception to this rule is the cleveref
package: it must be loaded after hyperref
.
For more information on which packages should be (or must be) loaded after hyperref
, see the posting Which packages should be loaded after hyperref instead of before?
Addendum: Your claim that the "footmisc
and hyperref
packages don't work well together" appears to be based, in part, on a reading of the user guide of the footmisc
package, which states on p. 7 that
The
hyperref
package has ambitions to make hyperlinks from footnote marks to the corresponding footnote body; naturally this causes grief tofootmisc
, and unfortunately no remedy is currently known. If you usefootmisc
, suppresshyperref
's hyper-footnotes, by loading it as:
\usepackage[hyperfootnotes=false,...]{hyperref}
These statements appear to be based on older versions of the two packages. Fortunately, the situation is no longer that bad. In fact, it has been quite good for at least a few years. The only remaining major negative interaction between the two packages that I'm aware of occurs if the multiple
option of the footmisc
package is loaded. (If this option is set, LaTeX is supposed to insert a raised comma automatically between consecutive footnote marks.) This option doesn't work if the hyperref
package is loaded. :-( For more on this vexing topic, see the TeX.SE posting Incompatibility between footmisc-option multiple and hyperref.