View source: R/tsqca_config_chart.R
| generate_solution_note | R Documentation |
Creates a note explaining that multiple equivalent solutions exist and that the displayed configuration is based on M1.
generate_solution_note(
n_sol,
epi_list = NULL,
style = c("simple", "detailed"),
language = c("en", "ja"),
format = c("markdown", "latex")
)
n_sol |
Integer. Number of solutions. |
epi_list |
Character vector. Essential prime implicants (NULL to omit). |
style |
Character. |
language |
Character. |
format |
Character. |
Character string of the note, or empty string if n_sol <= 1.
# Simple note
generate_solution_note(2, style = "simple")
# Detailed note with EPIs
generate_solution_note(3, epi_list = c("A*B", "C"), style = "detailed")
# Japanese
generate_solution_note(2, style = "simple", language = "ja")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.