首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >中的JSS模板不能正常工作。

中的JSS模板不能正常工作。
EN

Stack Overflow用户
提问于 2016-07-14 15:38:51
回答 1查看 412关注 0票数 1

在使用JSS模板时发生了一些奇怪的事情。该模板似乎可以很好地处理徽标、作者等,但不适用于其他内容:

  • 没有提示'R>‘内部的代码块出现根据JSS风格的指导方针。
  • 同样,根据样式指南,特定期刊的卷数不是粗体的。
  • 在从属关系中,“第一行”和“第二行”并排放置。

我很感谢你的帮助。谢谢!

代码语言:javascript
复制
sessionInfo()

R version 3.3.1 RC (2016-06-17 r70798)

Platform: x86_64-suse-linux-gnu (64-bit)

Running under: openSUSE Leap 42.1 (x86_64)

locale:
[1] LC_CTYPE=es_ES.UTF-8       LC_NUMERIC=C       LC_TIME=es_ES.UTF-8        LC_COLLATE=es_ES.UTF-8     LC_MONETARY=es_ES.UTF-8   
[6] LC_MESSAGES=es_ES.UTF-8    LC_PAPER=es_ES.UTF-8       LC_NAME=C                  LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=es_ES.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] rticles_0.2     knitr_1.13      rmarkdown_0.9.6

loaded via a namespace (and not attached):
[1] htmltools_0.3.5 tools_3.3.1     Rcpp_0.12.4     digest_0.6.9

您可以在rticles (https://github.com/rstudio/rticles)中找到JSS模板。我还添加了一个简单的bib文件来编译书目:

test.Rmd文件:

代码语言:javascript
复制
author:
    - name: FirstName LastName
    affiliation: University/Company
    address: >
      First line
      Second line
    email: name@company.com
    url: http://rstudio.com
  - name: Second Author
    affiliation: Affiliation
title:
  formatted: "A Capitalized Title: Something about a Package \\pkg{foo}"
  # If you use tex in the formatted title, also supply version without
  plain:     "A Capitalized Title: Something about a Package foo"
  # For running headers, if needed
  short:     "\\pkg{foo}: A Capitalized Title"
abstract: >
  The abstract of the article.
keywords:
  # at least one keyword must be supplied
  formatted: [keywords, not capitalized, "\\proglang{Java}"]
  plain:     [keywords, not capitalized, Java]
preamble: >
  \usepackage{amsmath}
output: rticles::jss_article
bibliography: biblio.bib
---

# Introduction

This template demonstrates some of the basic latex you'll need to know to create a JSS     article.    

*A citation* [see @rtip2016; and @Hadley2011]

## Code formatting

Don't use markdown, instead use the more precise latex commands:

* \proglang{Java}
* \pkg{plyr}
* \code{print("abc")}

# R code

Can be inserted in regular R markdown blocks.

```{r, prompt=TRUE}

X <- 1:10

X

代码语言:javascript
复制
#References

和biblio.bib文件:

代码语言:javascript
复制
@Manual{rtip2016,
    title = {rtip: Inequality, Welfare and Poverty Indices and Curves using
    the EU-SILC Data},
    author = {Angel Berihuete and Carmen Dolores Ramos and Miguel Angel Sordo},
    year = {2016},
    note = {R package version 1.0.0},
    url = {https://CRAN.R-project.org/package=rtip},
  }

@Article{Hadley2011,
    title = {The Split-Apply-Combine Strategy for Data Analysis},
    author = {Hadley Wickham},
    journal = {Journal of Statistical Software},
    year = {2011},
    volume = {40},
    number = {1},
    pages = {1--29},
    url = {http://www.jstatsoft.org/v40/i01/},
 }
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-07-15 13:40:43

提示问题是rticles jss_article设置中的一个错误。你可以尝试一个固定的版本

代码语言:javascript
复制
devtools::install_github("rstudio/rticles")

编辑后添加:

引文风格的问题很容易解决。只要改变

代码语言:javascript
复制
output: rticles::jss_article

代码语言:javascript
复制
output: 
  rticles::jss_article:
    citation_package: natbib

在文档的YAML标题中。这可能是rticle中的默认操作,但我不知道需要进行哪些更改。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/38378527

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档