You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Profile image (can set in _config.yml): images/profile.png
24
-
25
-
## Tips and hints
26
-
27
-
* Name a file ".md" to have it render in markdown, name it ".html" to render in HTML.
28
-
* Go to the [commit list](https://github.com/academicpages/academicpages.github.io/commits/master) (on your repo) to find the last version Github built with Jekyll.
Support for MathJax Version 3.0 is included in the template:
41
-
42
-
$$
43
-
\displaylines{
44
-
\nabla \cdot E= \frac{\rho}{\epsilon_0} \\\
45
-
\nabla \cdot B=0 \\\
46
-
\nabla \times E= -\partial_tB \\\
47
-
\nabla \times B = \mu_0 \left(J + \varepsilon_0 \partial_t E \right)
48
-
}
49
-
$$
50
-
51
-
The default delimiters of `$$...$$` and `\\[...\\]` are supported for displayed mathematics, while `\\(...\\)` should be used for in-line mathematics (ex., \\(a^2 + b^2 = c^2\\))
52
-
53
-
**Note** that since Academic Pages uses Markdown which cases some interference with MathJax and LaTeX for escaping characters and new lines, although [some workarounds exist](https://math.codidact.com/posts/278763/278772#answer-278772).
54
-
55
-
## Markdown guide
56
-
57
-
Academic Pages uses [kramdown](https://kramdown.gettalong.org/index.html) for Markdown rendering, which has some differences from other Markdown implementations such as GitHub's. In addition to this guide, please see the [kramdown Syntax page](https://kramdown.gettalong.org/syntax.html) for full documentation.
|[John Doe](#)| 2016 | Description of the item in the list |
80
-
|[Jane Doe](#)| 2019 | Description of the item in the list |
81
-
|[Doe Doe](#)| 2022 | Description of the item in the list |
82
-
83
-
### Table 2
84
-
85
-
| Header1 | Header2 | Header3 |
86
-
|:--------|:-------:|--------:|
87
-
| cell1 | cell2 | cell3 |
88
-
| cell4 | ce
89
-
ll5 | cell6 |
90
-
|-----------------------------|
91
-
| cell1 | cell2 | cell3 |
92
-
| cell4 | cell5 | cell6 |
93
-
|=============================|
94
-
| Foot1 | Foot2 | Foot3 |
95
-
96
-
## Definition Lists
97
-
98
-
Definition List Title
99
-
: Definition list division.
100
-
101
-
Startup
102
-
: A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.
103
-
104
-
#dowork
105
-
: Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.
106
-
107
-
Do It Live
108
-
: I'll let Bill O'Reilly [explain](https://www.youtube.com/watch?v=O_HyZ5aW76c"We'll Do It Live") this one.
109
-
110
-
## Unordered Lists (Nested)
111
-
112
-
* List item one
113
-
* List item one
114
-
* List item one
115
-
* List item two
116
-
* List item three
117
-
* List item four
118
-
* List item two
119
-
* List item three
120
-
* List item four
121
-
* List item two
122
-
* List item three
123
-
* List item four
124
-
125
-
## Ordered List (Nested)
126
-
127
-
1. List item one
128
-
1. List item one
129
-
1. List item one
130
-
2. List item two
131
-
3. List item three
132
-
4. List item four
133
-
2. List item two
134
-
3. List item three
135
-
4. List item four
136
-
2. List item two
137
-
3. List item three
138
-
4. List item four
139
-
140
-
## Buttons
141
-
142
-
Make any link standout more when applying the `.btn` class.
143
-
144
-
## Notices
145
-
146
-
Basic notices or call-outs are supported using the following syntax:
147
-
148
-
```markdown
149
-
**Watch out!** You can also add notices by appending `{: .notice}` to the line following paragraph.
150
-
{: .notice}
151
-
```
152
-
153
-
which wil render as:
154
-
155
-
**Watch out!** You can also add notices by appending `{: .notice}` to the line following paragraph.
156
-
{: .notice}
157
-
158
-
### Footnotes
159
-
160
-
Footnotes can be useful for clarifying points in the text, or citing information.[^1] Markdown support numeric footnotes, as well as text as long as the values are unique.[^note]
161
-
162
-
```markdown
163
-
This is the regular text.[^1] This is more regular text.[^note]
164
-
165
-
[^1]: This is the footnote itself.
166
-
[^note]: This is another footnote.
167
-
```
168
-
169
-
[^1]: Such as this footnote.
170
-
[^note]: When using text for footnotes markers, no spaces are permitted in the name.
171
-
172
-
## HTML Tags
173
-
174
-
### Address Tag
175
-
176
-
<address>
177
-
1 Infinite Loop<br /> Cupertino, CA 95014<br /> United States
178
-
</address>
179
-
180
-
### Anchor Tag (aka. Link)
181
-
182
-
This is an example of a [link](http://github.com"Github").
183
-
184
-
### Abbreviation Tag
185
-
186
-
The abbreviation CSS stands for "Cascading Style Sheets".
187
-
188
-
*[CSS]: Cascading Style Sheets
189
-
190
-
### Cite Tag
191
-
192
-
"Code is poetry." ---<cite>Automattic</cite>
193
-
194
-
### Code Tag
195
-
196
-
You will learn later on in these tests that `word-wrap: break-word;` will be your best friend.
197
-
198
-
You can also write larger blocks of code with syntax highlighting supported for some languages, such as Python:
199
-
200
-
```python
201
-
print('Hello World!')
202
-
```
203
-
204
-
or R:
205
-
206
-
```R
207
-
print("Hello World!", quote=FALSE)
208
-
```
209
-
210
-
### Strike Tag
211
-
212
-
This tag will let you <strike>strikeout text</strike>.
213
-
214
-
### Emphasize Tag
215
-
216
-
The emphasize tag should _italicize_ text.
217
-
218
-
### Insert Tag
219
-
220
-
This tag should denote <ins>inserted</ins> text.
221
-
222
-
### Keyboard Tag
223
-
224
-
This scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the `<code>` tag.
225
-
226
-
### Preformatted Tag
227
-
228
-
This tag styles large blocks of code.
229
-
230
-
<pre>
231
-
.post-title {
232
-
margin: 0 0 5px;
233
-
font-weight: bold;
234
-
font-size: 38px;
235
-
line-height: 1.2;
236
-
and here's a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;
0 commit comments