initial commit
This commit is contained in:
BIN
content/post/2019-08-08-text-and-typography/devices-mockup.png
Normal file
BIN
content/post/2019-08-08-text-and-typography/devices-mockup.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 74 KiB |
BIN
content/post/2019-08-08-text-and-typography/devtools-dark.png
Normal file
BIN
content/post/2019-08-08-text-and-typography/devtools-dark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
BIN
content/post/2019-08-08-text-and-typography/devtools-light.png
Normal file
BIN
content/post/2019-08-08-text-and-typography/devtools-light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 33 KiB |
194
content/post/2019-08-08-text-and-typography/index.en.md
Normal file
194
content/post/2019-08-08-text-and-typography/index.en.md
Normal file
@ -0,0 +1,194 @@
|
||||
---
|
||||
title: Text and Typography
|
||||
date: 2019-08-08 11:33:00 +0800
|
||||
draft: false
|
||||
description: >-
|
||||
Examples of text, typography, math equations, diagrams, flowcharts, pictures, videos, and more.
|
||||
categories:
|
||||
- Blogging
|
||||
- Demo
|
||||
tags:
|
||||
- typography
|
||||
pin: true
|
||||
math: true
|
||||
image:
|
||||
path: devices-mockup.png
|
||||
lqip: data:image/webp;base64,UklGRpoAAABXRUJQVlA4WAoAAAAQAAAADwAABwAAQUxQSDIAAAARL0AmbZurmr57yyIiqE8oiG0bejIYEQTgqiDA9vqnsUSI6H+oAERp2HZ65qP/VIAWAFZQOCBCAAAA8AEAnQEqEAAIAAVAfCWkAALp8sF8rgRgAP7o9FDvMCkMde9PK7euH5M1m6VWoDXf2FkP3BqV0ZYbO6NA/VFIAAAA
|
||||
alt: Responsive rendering of Chirpy theme on multiple devices.
|
||||
---
|
||||
|
||||
## Headings
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
# H1 — heading {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
## H2 — heading {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
### H3 — heading {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
#### H4 — heading {data-toc-skip=true .mt-4 }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## Paragraph
|
||||
|
||||
Quisque egestas convallis ipsum, ut sollicitudin risus tincidunt a. Maecenas interdum malesuada egestas. Duis consectetur porta risus, sit amet vulputate urna facilisis ac. Phasellus semper dui non purus ultrices sodales. Aliquam ante lorem, ornare a feugiat ac, finibus nec mauris. Vivamus ut tristique nisi. Sed vel leo vulputate, efficitur risus non, posuere mi. Nullam tincidunt bibendum rutrum. Proin commodo ornare sapien. Vivamus interdum diam sed sapien blandit, sit amet aliquam risus mattis. Nullam arcu turpis, mollis quis laoreet at, placerat id nibh. Suspendisse venenatis eros eros.
|
||||
|
||||
## Lists
|
||||
|
||||
### Ordered list
|
||||
|
||||
1. Firstly
|
||||
2. Secondly
|
||||
3. Thirdly
|
||||
|
||||
### Unordered list
|
||||
|
||||
- Chapter
|
||||
- Section
|
||||
- Paragraph
|
||||
|
||||
### ToDo list
|
||||
|
||||
- [ ] Job
|
||||
- [x] Step 1
|
||||
- [x] Step 2
|
||||
- [ ] Step 3
|
||||
|
||||
### Description list
|
||||
|
||||
Sun
|
||||
: the star around which the earth orbits
|
||||
|
||||
Moon
|
||||
: the natural satellite of the earth, visible by reflected light from the sun
|
||||
|
||||
## Block Quote
|
||||
|
||||
> This line shows the _block quote_.
|
||||
|
||||
## Prompts
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
> An example showing the `tip` type prompt.
|
||||
{.prompt-tip }
|
||||
|
||||
> An example showing the `info` type prompt.
|
||||
{.prompt-info }
|
||||
|
||||
> An example showing the `warning` type prompt.
|
||||
{.prompt-warning }
|
||||
|
||||
> An example showing the `danger` type prompt.
|
||||
{.prompt-danger }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## Tables
|
||||
|
||||
| Company | Contact | Country |
|
||||
| :--------------------------- | :--------------- | ------: |
|
||||
| Alfreds Futterkiste | Maria Anders | Germany |
|
||||
| Island Trading | Helen Bennett | UK |
|
||||
| Magazzini Alimentari Riuniti | Giovanni Rovelli | Italy |
|
||||
|
||||
## Links
|
||||
|
||||
<http://127.0.0.1:4000>
|
||||
|
||||
## Footnote
|
||||
|
||||
Click the hook will locate the footnote[^footnote], and here is another footnote[^fn-nth-2].
|
||||
|
||||
## Inline code
|
||||
|
||||
This is an example of `Inline Code`.
|
||||
|
||||
## Filepath
|
||||
|
||||
Here is the {{< filepath src="/path/to/the/file.extend" >}}.
|
||||
|
||||
## Code blocks
|
||||
|
||||
### Common
|
||||
|
||||
```text
|
||||
This is a common code snippet, without syntax highlight and line number.
|
||||
```
|
||||
|
||||
### Specific Language
|
||||
|
||||
```bash
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "The command was not successful.";
|
||||
#do the needful / exit
|
||||
fi;
|
||||
```
|
||||
|
||||
### Specific filename
|
||||
|
||||
```sass {file="_sass/jekyll-theme-chirpy.scss"}
|
||||
@import
|
||||
"colors/light-typography",
|
||||
"colors/dark-typography";
|
||||
```
|
||||
|
||||
|
||||
## Mathematics
|
||||
|
||||
The mathematics powered by [**MathJax**](https://www.mathjax.org/):
|
||||
|
||||
$$
|
||||
\begin{equation}
|
||||
\sum_{n=1}^\infty 1/n^2 = \frac{\pi^2}{6}
|
||||
\label{eq:series}
|
||||
\end{equation}
|
||||
$$
|
||||
|
||||
We can reference the equation as \eqref{eq:series}.
|
||||
|
||||
When $a \ne 0$, there are two solutions to $ax^2 + bx + c = 0$ and they are
|
||||
|
||||
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
|
||||
|
||||
## Images
|
||||
|
||||
### Default (with caption)
|
||||
|
||||

|
||||
{ width="972" height="589" caption="Full screen width and center alignment"}
|
||||
|
||||
### Left aligned
|
||||
|
||||

|
||||
{ width="972" height="589" .w-75 .normal}
|
||||
|
||||
### Float to left
|
||||
|
||||

|
||||
{ width="972" height="589" .w-50 .left}
|
||||
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
|
||||
|
||||
### Float to right
|
||||
|
||||

|
||||
{ width="972" height="589" .w-50 .right}
|
||||
Praesent maximus aliquam sapien. Sed vel neque in dolor pulvinar auctor. Maecenas pharetra, sem sit amet interdum posuere, tellus lacus eleifend magna, ac lobortis felis ipsum id sapien. Proin ornare rutrum metus, ac convallis diam volutpat sit amet. Phasellus volutpat, elit sit amet tincidunt mollis, felis mi scelerisque mauris, ut facilisis leo magna accumsan sapien. In rutrum vehicula nisl eget tempor. Nullam maximus ullamcorper libero non maximus. Integer ultricies velit id convallis varius. Praesent eu nisl eu urna finibus ultrices id nec ex. Mauris ac mattis quam. Fusce aliquam est nec sapien bibendum, vitae malesuada ligula condimentum.
|
||||
|
||||
### Dark/Light mode & Shadow
|
||||
|
||||
The image below will toggle dark/light mode based on theme preference, notice it has shadows.
|
||||
|
||||

|
||||
{ .light .w-75 .shadow .rounded-10 w="1212" h="668" }
|
||||

|
||||
{ .dark .w-75 .shadow .rounded-10 w="1212" h="668" }
|
||||
|
||||
## Video
|
||||
|
||||
{{< embed/youtube id="Balreaj8Yqs" >}}
|
||||
|
||||
## Reverse Footnote
|
||||
|
||||
[^footnote]: The footnote source
|
||||
[^fn-nth-2]: The 2nd footnote source
|
193
content/post/2019-08-08-text-and-typography/index.zh-CN.md
Normal file
193
content/post/2019-08-08-text-and-typography/index.zh-CN.md
Normal file
@ -0,0 +1,193 @@
|
||||
---
|
||||
title: 文本和排版
|
||||
date: 2019-08-08 11:33:00 +0800
|
||||
draft: false
|
||||
description: >-
|
||||
文本、排版、数学公式、图表、流程图、图片、视频等示例。
|
||||
categories:
|
||||
- 博客
|
||||
- 演示
|
||||
tags:
|
||||
- 排版
|
||||
pin: true
|
||||
math: true
|
||||
image:
|
||||
path: devices-mockup.png
|
||||
lqip: data:image/webp;base64,UklGRpoAAABXRUJQVlA4WAoAAAAQAAAADwAABwAAQUxQSDIAAAARL0AmbZurmr57yyIiqE8oiG0bejIYEQTgqiDA9vqnsUSI6H+oAERp2HZ65qP/VIAWAFZQOCBCAAAA8AEAnQEqEAAIAAVAfCWkAALp8sF8rgRgAP7o9FDvMCkMde9PK7euH5M1m6VWoDXf2FkP3BqV0ZYbO6NA/VFIAAAA
|
||||
alt: Chirpy 主题在多个设备上的响应式渲染。
|
||||
---
|
||||
|
||||
## 标题
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
# H1 — 标题 {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
## H2 — 标题 {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
### H3 — 标题 {data-toc-skip=true .mt-4 .mb-0 }
|
||||
|
||||
#### H4 — 标题 {data-toc-skip=true .mt-4 }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## 段落
|
||||
|
||||
这是一个段落示例。在这里,我们可以看到段落是如何在 Markdown 中呈现的。段落是由一个或多个连续的文本行组成,它们之间用一个或多个空行分隔。正常的段落不应该用空格或制表符缩进。这样可以保持文档的整洁和一致性。文本排版是网页设计和内容创作中的重要元素,良好的排版可以提高可读性和美观度。
|
||||
|
||||
## 列表
|
||||
|
||||
### 有序列表
|
||||
|
||||
1. 第一点
|
||||
2. 第二点
|
||||
3. 第三点
|
||||
|
||||
### 无序列表
|
||||
|
||||
- 章节
|
||||
- 节
|
||||
- 段落
|
||||
|
||||
### 待办列表
|
||||
|
||||
- [ ] 任务
|
||||
- [x] 步骤 1
|
||||
- [x] 步骤 2
|
||||
- [ ] 步骤 3
|
||||
|
||||
### 描述列表
|
||||
|
||||
太阳
|
||||
: 地球绕其运行的恒星
|
||||
|
||||
月亮
|
||||
: 地球的天然卫星,通过反射太阳光可见
|
||||
|
||||
## 引用块
|
||||
|
||||
> 这行显示 *引用块*。
|
||||
|
||||
## 提示框
|
||||
|
||||
<!-- markdownlint-capture -->
|
||||
<!-- markdownlint-disable -->
|
||||
> 这是一个显示 `tip` 类型提示的例子。
|
||||
{.prompt-tip }
|
||||
|
||||
> 这是一个显示 `info` 类型提示的例子。
|
||||
{.prompt-info }
|
||||
|
||||
> 这是一个显示 `warning` 类型提示的例子。
|
||||
{.prompt-warning }
|
||||
|
||||
> 这是一个显示 `danger` 类型提示的例子。
|
||||
{.prompt-danger }
|
||||
<!-- markdownlint-restore -->
|
||||
|
||||
## 表格
|
||||
|
||||
| 公司 | 联系人 | 国家 |
|
||||
| :--------------------------- | :--------------- | ------: |
|
||||
| Alfreds Futterkiste | Maria Anders | 德国 |
|
||||
| Island Trading | Helen Bennett | 英国 |
|
||||
| Magazzini Alimentari Riuniti | Giovanni Rovelli | 意大利 |
|
||||
|
||||
## 链接
|
||||
|
||||
<http://127.0.0.1:4000>
|
||||
|
||||
## 脚注
|
||||
|
||||
点击钩子将定位到脚注 [^footnote],这里是另一个脚注 [^fn-nth-2]。
|
||||
|
||||
## 内联代码
|
||||
|
||||
这是 `内联代码` 的一个例子。
|
||||
|
||||
## 文件路径
|
||||
|
||||
这里是 {{< filepath src="/path/to/the/file.extend" >}}。
|
||||
|
||||
## 代码块
|
||||
|
||||
### 通用
|
||||
|
||||
```text
|
||||
这是一个通用代码片段,没有语法高亮和行号。
|
||||
```
|
||||
|
||||
### 特定语言
|
||||
|
||||
```bash
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "命令执行不成功。";
|
||||
#执行必要操作 / 退出
|
||||
fi;
|
||||
```
|
||||
|
||||
### 特定文件名
|
||||
|
||||
```sass {file="_sass/jekyll-theme-chirpy.scss"}
|
||||
@import
|
||||
"colors/light-typography",
|
||||
"colors/dark-typography";
|
||||
```
|
||||
|
||||
## 数学公式
|
||||
|
||||
数学公式由 [**MathJax**](https://www.mathjax.org/) 提供支持:
|
||||
|
||||
$$
|
||||
\begin{equation}
|
||||
\sum_{n=1}^\infty 1/n^2 = \frac{\pi^2}{6}
|
||||
\label{eq:series}
|
||||
\end{equation}
|
||||
$$
|
||||
|
||||
我们可以引用公式如 \eqref{eq:series}。
|
||||
|
||||
当 $a \ne 0$ 时,$ax^2 + bx + c = 0$ 有两个解,它们是
|
||||
|
||||
$$ x = {-b \pm \sqrt{b^2-4ac} \over 2a} $$
|
||||
|
||||
## 图片
|
||||
|
||||
### 默认(带标题)
|
||||
|
||||

|
||||
{ width="972" height="589" caption="全屏宽度和居中对齐" }
|
||||
|
||||
### 左对齐
|
||||
|
||||

|
||||
{ width="972" height="589" .w-75 .normal}
|
||||
|
||||
### 向左浮动
|
||||
|
||||

|
||||
{ width="972" height="589" .w-50 .left}
|
||||
这是一段文本示例,用于演示图片向左浮动时的效果。在这种情况下,文本会环绕在图片的右侧。这对于创建更具视觉吸引力的布局很有用,特别是当您想要文本和图片并排显示时。浮动元素是网页设计中常用的技术,可以有效利用空间并增强内容的可读性。
|
||||
|
||||
### 向右浮动
|
||||
|
||||

|
||||
{ width="972" height="589" .w-50 .right}
|
||||
这是一段文本示例,用于演示图片向右浮动时的效果。在这种情况下,文本会环绕在图片的左侧。这种布局技术可以创建更加动态和有趣的页面设计。合理使用浮动可以使您的内容更加吸引人,并引导读者的视线在页面上流畅移动。记住,浮动元素需要适当的空间才能发挥最佳效果。
|
||||
|
||||
### 暗/亮模式 & 阴影
|
||||
|
||||
下面的图片将根据主题偏好切换暗/亮模式,注意它有阴影效果。
|
||||
|
||||

|
||||
{ .light .w-75 .shadow .rounded-10 w="1212" h="668" }
|
||||

|
||||
{ .dark .w-75 .shadow .rounded-10 w="1212" h="668" }
|
||||
|
||||
## 视频
|
||||
|
||||
{{< embed/youtube id="Balreaj8Yqs" >}}
|
||||
|
||||
## 反向脚注
|
||||
|
||||
[^footnote]: 脚注源
|
||||
[^fn-nth-2]: 第二个脚注源
|
BIN
content/post/2019-08-08-text-and-typography/mockup.png
Normal file
BIN
content/post/2019-08-08-text-and-typography/mockup.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Reference in New Issue
Block a user