文字外框
本文實驗在內文中為文字加入外框。目的是為之後各種讀書及技術筆記時候,可以卡片化呈現各個段落。
添加 CSS 於文件內;與 code block 風格類似,只是底色與字體大小不一樣。
<style>
.border {
margin: 1.5rem 0.5rem;
border: 1px solid;
display: block;
padding: 1rem 1rem;
}
.border p:last-child {
margin-bottom: 0; /* Remove margin at the bottom of the last paragraph */
}
.border ul {
margin-bottom: 0; /* Remove margin at the bottom of the last paragraph */
}
</style>
使用 <p class="border"></p>
來包圍文字段落。舉個例子(使用《黑天鵝》)
金句卡
你不知道的事比你知道的事情更加有意義。
你不知道的事比你知道的事情更加有意義。
額外的用途
之前看一篇講使用 Vim 以及各種 LaTeX snippets 做數學筆記的文章 How I’m able to take notes in mathematics lectures using LaTeX and Vim 覺得很 geek,一直都想模仿他的設計:使用了方形區塊,來強調重要的公理或數學式。下面的示範抄自作 Gilles Castel 的筆記頁面截圖。本次新設計的方框應該也可以有同樣地效果。本部落格使用的是 KaTeX 模組。
Theorem 16
Let \( \Omega \subset \mathbb{C} \) be a region, \( f(z) \) a holomorphic function. Let \( \{w_k\} \) a sequence of points in \( \Omega \) such that
- \( \{w_k\} \) are distinct
- \( w_k \to z^* \in \Omega \)
- \( f(w_k) = 0 \) for all \( k \)
Then \( f(z) = 0 \) for all \( z \in \Omega \)