RStudio中.Rnw文件中各节之间的链接

时间:2015-04-26 22:46:58

标签: r hyperlink sweave rnw

我正在尝试在主报表的子部分中创建一个链接,以重定向到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}

非常感谢有关如何实现此链接的任何建议!

1 个答案:

答案 0 :(得分:0)

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

如果您更改附录,则可以:

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

Screenshot

是否有原因,您使用\subsection*{First Point}代替\subsection{First Point}