
이 코드를 컴파일 중입니다.
\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
제대로 작동하지만 내 문서에서 다른 목적으로 해당 패키지가 필요합니다.