Ask Your Question
0

What is the method of utilizing \cancel in Shiny MathJax?

asked 2023-05-22 19:28:45 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-05-22 19:52:02 +0000

devzero gravatar image

To use the \cancel method in Shiny MathJax, you can simply insert it as a LaTeX expression using the dollar sign delimiter. For example, if you want to strikeout the number "5" in your app, you can use the following code:

ui <- fluidPage(
  mainPanel(
    HTML('Here is a canceled number: $\\cancel{5}$')
  )
)

server <- function(input, output) {}

shinyApp(ui, server)

This will render a text element with a strikethrough line over the number 5, like this:

Here is a canceled number: 5

You can adjust the size, color and style of the strikethrough line using CSS, or by specifying additional options in the LaTeX expression.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-22 19:28:45 +0000

Seen: 13 times

Last updated: May 22 '23