0

我正在尝试在主报告的一个小节中创建一个链接,以重定向到 Studio 中 .Rnw 文件中附录的小节。这是我尝试过的。虽然我没有收到错误,并且它生成了一个 PDF 文件,但似乎没有预期的链接:

\documentclass{article}
\usepackage{float, hyperref}
\usepackage[margin=1in]{geometry}
\usepackage{graphicx}
\usepackage{hyperref}

\begin{document}
\SweaveOpts{concordance=TRUE}

\title{The Title}

\maketitle

<<options, echo=FALSE>>=
library(knitr)
  opts_chunk$set(cache=TRUE)
@

\section*{Introduction}

I have my introduction here.

\subsection*{Subsection}

I have my subsection here. I would like to link to the subsection of the appendix at the end of this sentence; how can I do that See ~\ref{subsec:firstPoint}.

\section*{Conclusion}

I have my conclusion here.

\section*{Appendix}

\subsection*{First Point}
\label{subsec:firstPoint}

Here is where I want my link above to point to.

\end{document}

任何有关如何实现此链接的建议将不胜感激!

4

1 回答 1

0

您正在尝试创建指向未编号部分的链接,该部分无法为您提供该部分的编号,因为没有。

如果您更改附录,它会起作用:

\section*{Appendix}
\subsection{First Point}
\label{subsec:firstPoint}

截屏

有没有理由,你使用\subsection*{First Point}而不是\subsection{First Point}

于 2015-04-26T23:31:32.463 回答