-
I need to use asterisks (like in Of course if I place the asterisks as needed by LaTeX, ignoring that I'm inside a markdown environment, they are misinterpreted and I get the error
|
Beta Was this translation helpful? Give feedback.
Answered by
Witiko
Mar 9, 2023
Replies: 1 comment
-
@nopria In Markdown, asterisks denote emphasis. To prevent this interpretation, you have several options:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
nopria
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@nopria In Markdown, asterisks denote emphasis. To prevent this interpretation, you have several options:
\begin{figure\*}
rawAttribute
option and surround TeX code in a raw code span:`\begin{figure}`{=tex}
Alternatively, you can also enable the
fencedCode
option and use a raw block:hybrid
,rawAttribute
allows you to cleanly separate TeX and Markdown code.If you use TeX sparingly, disabling
hybrid
and using justrawAttribute
will improve readability.