View source: R/simer.Utility.R
print_info | R Documentation |
Print R Package information, include title, short_title, logo, version, authors, contact.
print_info(
welcome = NULL,
title = NULL,
short_title = NULL,
logo = NULL,
version = NULL,
authors = NULL,
contact = NULL,
linechar = "=",
width = NULL,
verbose = TRUE
)
welcome |
welcome text, for example: "Welcom to <Packagename>". |
title |
long text to introduct package. |
short_title |
short label, top-left of logo. |
logo |
logo. |
version |
short label, bottom-right of logo. |
authors |
authors of software. |
contact |
email or website. |
linechar |
1, 2, or char. |
width |
banner width. |
verbose |
whether to print detail. |
Build date: Oct 22, 2018 Last update: Apr 30, 2022
welcome information.
Dong Yin and Haohao Zhang
welcome <- "Welcome to SIMER"
title <- "Data Simulation for Life Science and Breeding"
authors <- c("Designed and Maintained by Dong Yin, Xuanning Zhang,
Lilin Yin, Haohao Zhang, and Xiaolei Liu",
"Contributors: Zhenshuang Tang, Jingya Xu, Xinyun Li,
Mengjin Zhu, Xiaohui Yuan, Shuhong Zhao")
contact <- "Contact: xiaoleiliu@mail.hzau.edu.cn"
logo_s <- c(" ____ ___ __ __ _____ ____ ",
"/ ___|_ _| \\/ | ____| _ \\ ",
"\\___ \\| || |\\/| | _| | |_) |",
" ___) | || | | | |___| _ < ",
"|____/___|_| |_|_____|_| \\_\\")
print_info(welcome = welcome, title = title, logo = logo_s, authors = authors,
contact = contact, linechar = '=', width = 70)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.