Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
suoyuan666 committed Sep 27, 2024
1 parent 110038e commit 70fdaf1
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion content/posts/notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: 随笔记
author: suo yuan
date: 2024-04-13T21:19:25
lastmod: 2024-09-27T03:10:17Z
draft: false
tags:
- others
Expand Down Expand Up @@ -111,4 +112,16 @@ __overflow (FILE *f, int ch)

## 从 AstroPaper 换到了 hugo

由于每次 `npm install` 后都会输出一些依赖组件不被支持的 log,我就换到了 Hugo 生成我的博客。
由于每次 `npm install` 后都会输出一些依赖组件不被支持的 log,我就换到了 Hugo 生成我的博客。

## pandoc 将 Markdown 转成 PDF

我希望找到一个我较为喜欢的方式将 Markdown 转成 PDF,我目前使用中,其实曾经用的 Typora 的效果感觉还好,不过我希望用一个偏 free 一些的软件,于是选择使用了 pandoc。

使用下边的这个命令就可以转了

```bash
$ pandoc test.md -o test.pdf --pdf-engine xelatex -V CJKmainfont="Noto Sans CJK SC" -V mainfont="Noto Sans Mono"
```

xelatex 需要相关的 Tex Live 包。

0 comments on commit 70fdaf1

Please sign in to comment.