or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Do you want to remove this version name and description?
Syncing
xxxxxxxxxx
Markdown for the Modern Researcher: Efficiency and Clarity
Introduction
Participants
Ty Tuff - Data Scientist - ESIIL - expert*** in turning complex data into actionable insights. He is a great teacher!
Bob Rabin Research meteorologist - KBOCC and Ilisagvik College
Darryl Reano: Acoma/Kewa; School of Earth and Space Exploration at Arizona State University; Geoscience Education Research
Mary Banner - SUNY ESF Graduate student. Ponca and Ojibwe
Jason Tinant Oglala Lakota College – Fascinated by water…
Rachel Lieber: ESIIL Community Engagement Specialist, CU Boulder
Cody O'Dale - Environmental GIS Specialist - Shoshone-Bannock Tribes
Cynthia Sanders College of the Muscogee Nation
Alex "Panda" Armendariz Mescalero Apache - Graduate Student at Cal Poly Pomona - Research focused on Indigenous Food Systems
**Byron Andrew: Jemez Pueblo/Yupik: Natural Resources Department, GIS Manager
Eva Weddell Ihanktunwan Dakota - Conservation biology at Oglala Lakota College
Justina White Eyes
Dakota State
** Shannon Boldt Northwest Indian College
Summer Dupree - Student at Oglala Lakota College
Cibele Amaral - ESIIL Interim Analytics Director and Remote Sensing Scientist
William Blacksmith* - Sicangu Lakota Climate Center - IT Specialist
Saima Shikesho - Student at Dartmouth College
Section 1: Mastering Markdown Syntax
Fundamentals of Text Formatting (headings, lists, bold, italics)
**vvv - Integrating Multimedia (image and video links)
Diagrams with Mermaid (creating flowcharts, mind maps, timvvvelines)
Interactive Elements (hyperlinks, embedding interactive content)
Section 2: Markdown in Research Tools
Section 3: Disseminating Research with Markdown and GitHub Pages
Conclusion
Additional Resources
Section 1: Mastering Markdown Syntax
1. Fundamentals of Text Formatting
Headings: Use
#
for different levels of headings.Heading Level 1
Heading Level 2
Heading Level 3
Lists: Bulleted lists use asterisks, numbers for ordered lists.
Bold and Italics: Use asterisks or underscores.
2. Advanced Structures
Add a ":"" to change text justification. Here the : is added on the left for left justification.
If you hit the boundaries of Markdown's capabilities, you can start to add html directly. Remember, this entire exercisse is to translate to html.
Sudoku Puzzle
Fill in the blank cells with numbers from 1 to 9, such that each row, column, and 3x3 subgrid contains all the numbers from 1 to 9 without repetition.
>
for blockquotes.3. Integrating Multimedia
Images: Add images using the format

.Videos: Embed videos using HTML in Markdown.
<iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allowfullscreen></iframe>
4. Diagrams with Mermaid
`
5. Interactive Elements
Hyperlinks: Use the format
[link text](URL)
.Embedding Interactive Content: Use HTML tags or specific platform embed codes.
<iframe src="https://example.com/interactive-content" width="600" height="400"></iframe>
6. Math Notation
Markdown can be combined with LaTeX for mathematical notation, useful in environmental data science for expressing statistical distributions, coordinate systems, and more. This requires a Markdown renderer with LaTeX support (like MathJax or KaTeX).
Inline Math: Use single dollar signs for inline math expressions. Representing the normal distribution.
Example: The probability density function of the normal distribution is given by \(f(x|\mu,\sigma) = \frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^2}\).`
Display Math: Use double dollar signs for standalone equations.
Example:
\[ f(x|\mu,\sigma) = \frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^2} \]
Common LaTeX Elements for Environmental Data Science:
\frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^2}
for \(\frac{1}{\sigma\sqrt{2\pi}}e^{-\frac{1}{2}\left(\frac{x-\mu}{\sigma}\right)^2}\)P(k; \lambda) = \frac{\lambda^k e^{-\lambda}}{k!}
for \(P(k; \lambda) = \frac{\lambda^k e^{-\lambda}}{k!}\)(r, \theta, \phi)
for \((r, \theta, \phi)\)(x, y, z)
for \((x, y, z)\)a = \sin^2\left(\frac{\Delta\phi}{2}\right) + \cos(\phi_1)\cos(\phi_2)\sin^2\left(\frac{\Delta\lambda}{2}\right)
for \(a = \sin^2\left(\frac{\Delta\phi}{2}\right) + \cos(\phi_1)\cos(\phi_2)\sin^2\left(\frac{\Delta\lambda}{2}\right)\)Note: The rendering of these equations as formatted math will depend on your Markdown viewer's LaTeX capabilities.
7. Effective Citations in Markdown
Inline Citations
Footnote Citations
Creating Footnotes
First reference details. Example: Emma Jones, "Environmental Study," Nature Journal, May 2020, https://nature-journal.com/envstudy2020. ↩︎ ↩︎
Second reference details. Example: David Smith, "Climate Change Controversies," Science Daily, August 2019, https://sciencedaily.com/climatechange2019. ↩︎