Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle pandoc #220

Merged
merged 3 commits into from
Jan 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: markovchain
Type: Package
Title: Easy Handling Discrete Time Markov Chains
Version: 0.9.5
Version: 0.9.6
Authors@R: c(
person("Giorgio Alfredo", "Spedicato", role = c("aut", "cre"),
email = "spedicato_giorgio@yahoo.it",comment = c(ORCID = "0000-0002-0315-8888")),
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ editor_options:
title: News
---

# News for version 0.9.6

- Handling change of pandoc requirements


# News for version 0.9.5

- Downtick R requirements
Expand Down
2 changes: 1 addition & 1 deletion vignettes/an_introduction_to_markovchain_package.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ preamble: >
\usepackage{amsfonts}
abstract: |
The \pkg{markovchain} package aims to fill a gap within the \proglang{R} framework providing S4 classes and methods for easily handling discrete time Markov chains, homogeneous and simple inhomogeneous ones as well as continuous time Markov chains. The S4 classes for handling and analysing discrete and continuous time Markov chains are presented, as well as functions and method for performing probabilistic and statistical analysis. Finally, some examples in which the package's functions are applied to Economics, Finance and Natural Sciences topics are shown.
output: if (rmarkdown::pandoc_version() < "2.2") function(...) { rmarkdown::pdf_document(template = "./template.tex", ...) } else function(...) { bookdown::pdf_book(base_format = rticles::jss_article, ...) }
output: if (rmarkdown::pandoc_version() < "2.2") function(...) { rmarkdown::pdf_document(template = "./template.tex", ...) } else function(...) { bookdown::pdf_book(base_format = rticles::jss_article, ...) }
vignette: >
%\VignetteIndexEntry{An introduction to markovchain package}
%\VignetteEngine{knitr::rmarkdown}
Expand Down
2 changes: 1 addition & 1 deletion vignettes/higher_order_markov_chains.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ preamble: >
\setkeys{Gin}{width=0.8\textwidth}
abstract: |
The \pkg{markovchain} package contains functions to fit higher (possibly) multivariate order Markov chains. The functions are shown as well as simple exmaples
output: if (rmarkdown::pandoc_version() < "2.2") function(...) { rmarkdown::pdf_document(template = "./template.tex", ...) } else function(...) { bookdown::pdf_book(base_format = rticles::jss_article, ...) }
output: if (rmarkdown::pandoc_version() < "2.2") function(...) { rmarkdown::pdf_document(template = "./template.tex", ...) } else function(...) { bookdown::pdf_book(base_format = rticles::jss_article, ...) }
vignette: >
%\VignetteIndexEntry{Higher order markov chains}
%\VignetteEngine{knitr::rmarkdown}
Expand Down