标签:ref text rip create images this vma ken Matter
目录
A brief introduction to how to use markdown for Typora.
press Shift + Enter to create a single line break,to make other markdown parsers recognize your line break, you can leave tow whitespace at the end of the line,or insert
input ‘#‘ 1-6 header levels
input ‘>‘ followed by quote contents a block quote is generated.
for example
Input * or + or - list item will create an un-ordered list
Input 1. list item will create an ordered list
input [ ] or [x] for task lists
[ ] a task list item
[ ] another task list item
Input ``` and press return(enter)
public static void main() {
System.out.println("Hello World!");
}
function hello() {
console.log('Hello World!');
}
Input $$ then press ‘Return‘ will trigger an input field which accept Tex/LaTex source.
$$
\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \
\end{vmatrix}
$$
Input | First Header | Second Header |
and press return
key will create a table with two column.
First Header | Second Header |
---|---|
Content Cell | Content Cell |
Content Cell | Content Cell |
Left-Aligned | Center Aligned | Right Aligned |
---|---|---|
col 3 is | some wordy text | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
You can create footnotes like this1
Input *** or —— on a blank line
Input `then press
Return` key will create a section for “Table of Contents”
This is an example inline link.
This link has no title attribute.
This link()
This is an example reference-style link.
insert urls as links, wrapped by <
brackets>
.
single asterisks
single underscores
*this text is surrounded by literal asterisks*
double asterisks
Use the printf()
function
Unlike a pre-formatted code block, a code span indicates code within a normal paragraph
Mistaken text.
Underline
Input emoji with syntax
:smile:
??
:cry:
??
$\lim_{x \to \infty} \exp(-x) = 0$
To use this feature, first, please enable it in Preference
Panel -> Markdown
Tab. Then use ~
to wrap subscript content,for example:H~2~O,X~long?text~ /
To use this feature, first, please enable it in Preference
Panel -> Markdown
Tab. Then use ^
to wrap superscript content, for example: x^2^
To use this feature, first, please enable it in Preference
Panel -> Markdown
Tab. Then use ==
to wrap highlight content, for example: ==highlight==
text?
标签:ref text rip create images this vma ken Matter
原文地址:https://www.cnblogs.com/universal/p/10415305.html