我正在编译这段代码:
\documentclass{article}
\usepackage{hyperref}
\newcounter{MS} %\renewcommand*{\theMS}{MS\arabic{MS}} % milestones
\begin{document}
\begin{tabular}{p{2cm}|l}
No. & Title \\
\refstepcounter{MS} \theMS \label{MS1} & this line takes too much vertical space
\\
-- & this one is OK
\\
\refstepcounter{MS} \theMS \label{MS2} & this line takes too much vertical space
\\
\end{tabular}
Reference to the first row: \ref{MS1}.
I need package hyperref for \url{url.com}
\end{document}
我得到一个表格,其中有步进计数器的那些行占用了太多的垂直空间:
有人能建议如何摆脱这个问题吗?如果我删除该包,hyperref
它就可以正常工作,但我需要该包用于文档中的其他用途。