I am writing a manual for a product, which has additional features only on select models. I, obviously, try to use footnotes to indicate the same.
Please use this Preamble
MWE:
\begin{description}
\item[] \screenshot{figure name}{figure caption}
\item[A brilliant feature\footnotemark]\footnotetext{\label{fn:onlyCol}available on select models} It helps spawn a new civilization.
\item[Activate brilliant feature]\textsuperscript{\ref{fn:onlyCol}} Activates the above mentioned brilliant feature.
\end{description}
Errors:
Use of \@xfootnotemark doesn't match its definition. ... A brilliant feature \footnotemark]
Argument of \stepcounter has an extra }. ... A brilliant feature \footnotemark]
Paragraph ended before \stepcounter was complete. ... A brilliant feature \footnotemark]
Steps taken so far:
- tried removing
\label{fn:onlyCol} - tried using
\footnote{available on select models} - Answer by Lockstep
- Answer by Uriel CP
Class used: Article
Package: Hyperref and others.
Compiler: XeLaTeX
IDE: Texstudio
Note: The suggested Similar Questions do not indicate that this question is a duplicate.
EDIT:
This works
\item[Activate brilliant feature]\textsuperscript{\ref{fn:onlyCol}} Activates the above mentioned brilliant feature.
But this doesn't
\item[Activate brilliant feature\textsuperscript{\ref{fn:onlyCol}}] Activates the above mentioned brilliant feature.
May I ask why? or will that be another question?
\documentclassand end with\end{document}. – Werner Dec 19 '16 at 07:02\documentclass{article} \usepackage{hyperref} \begin{document}and\end{document}, though the command\screenshotwill generate an error. – jon Dec 19 '16 at 07:02