I need the same positioning of footnotes marks and text as produced by using \usepackage[hang]{footmisc} (footnote mark close to the left margin, some space between mark and text and the same space between the text and the left margin for all the lines). I also need to make hyperlinks to the footnotes. Since footmisc and hyperref packages don't work well together (i.e. no hyperlinks to footnotes are produced), is it possible to specify mentioned positioning without using footmisc package? Or is there any other way to accomplish both desired positioning and linking?
Here is the working example of what I want to accomplish, just with the working hyperlink:
% Compiled using XeLaTeX.
\documentclass[a4paper, 11pt, twoside, openright]{report}
\setlength{\parindent}{0pt}
\setlength{\parskip}{12pt}
\usepackage[nodisplayskipstretch]{setspace}
\usepackage[hidelinks,colorlinks=true,linkcolor=blue,citecolor=blue,urlcolor=blue]
{hyperref}
\usepackage[hang]{footmisc}
\setlength\footnotemargin{12pt}
\begin{document}
\section{This is the title}
This is some text with the footnote\footnote{And this is the footnote formated
exactly as I like, but it would be perfect if the hyperlink in the main text
would work as it does when I do not use the footmisc package.}.
\end{document}
\documentclass{...}and ending with\end{document}. – Apr 02 '14 at 12:36hyperrefpackage after thefootmiscpackage, you should be getting footnote markers that are hyperlinks to the corresponding footnotes. (Aside: Becausehyperrefhas to perform various demanding jobs to convert the cross-reference call-outs, incl. footnote markers, it's important to load it after any package that also affects LaTeX's cross-referencing abilities. The only major exception to this rule is thecleverefpackage: it should be loaded afterhyperref.) – Mico Apr 02 '14 at 13:09footmiscpackage documentation instead of the recommendation to use thehyperrefpackage with the optionhyperfootnotes=false. – MMSt Apr 02 '14 at 13:18hyperref. I'll write up an answer that makes this all a bit more explicit. – Mico Apr 02 '14 at 13:20footmiscdocumentation misleading. According to them, usingfootmiscandhyperrefpackages is not something that might lead to nicely referenced footnotes. Thanks anyway! – MMSt Apr 02 '14 at 13:29footmiscandhyperrefhas to with the former package's optionmultiple: If onlyfootmiscis loaded, themultipleoption works fine, but if thehyperrefpackage is loaded as well, themultipleoption doesn't perform properly. See Incompatibility between footmisc-option multiple and hyperref for more information. – Mico Apr 02 '14 at 13:40