Browse code

Commit made by the Bioconductor Git-SVN bridge.

Commit id: 05c736af090ba83e083cf215067463f91bc0060e

update vignette with floating toc



git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/ggtree@102085 bc3139a8-67e5-0310-9ffc-ced21a209358

g.yu authored on 08/04/2015 13:31:16
Showing 4 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: ggtree
2 2
 Type: Package
3 3
 Title: a phylogenetic tree viewer for different types of tree annotations
4
-Version: 0.99.27
4
+Version: 0.99.28
5 5
 Author: Guangchuang Yu
6 6
 Maintainer: Guangchuang Yu <guangchuangyu@gmail.com>
7 7
 Description: ggtree extends the ggplot2 plotting system which implemented the
... ...
@@ -1,3 +1,7 @@
1
+CHANGES IN VERSION 0.99.28
2
+------------------------
3
+ o update vignette with floating table of content <2015-04-08, Wed>
4
+ 
1 5
 CHANGES IN VERSION 0.99.27
2 6
 ------------------------
3 7
  o bug fixed, see https://github.com/GuangchuangYu/ggtree/issues/4 <2015-03-07, Tue>
... ...
@@ -13,6 +13,7 @@ csl: nature.csl
13 13
 output: 
14 14
   BiocStyle::html_document:
15 15
     toc: true
16
+    css: toc.css
16 17
   BiocStyle::pdf_document:
17 18
     toc: true
18 19
 vignette: >
... ...
@@ -21,7 +22,7 @@ vignette: >
21 22
   %\usepackage[utf8]{inputenc}
22 23
 ---
23 24
 
24
-```{r style, echo=FALSE, results="hide", message=FALSE}
25
+```{r style, echo=FALSE, results="asis", message=FALSE}
25 26
 BiocStyle::markdown()
26 27
 knitr::opts_chunk$set(tidy = FALSE,
27 28
 		   message = FALSE)
28 29
new file mode 100644
... ...
@@ -0,0 +1,8 @@
1
+#TOC {
2
+    position: fixed;
3
+    left: 0;
4
+    top: 0;
5
+    width: 200px;
6
+    height: 100%;
7
+    overflow:auto;
8
+}