ilcpm

Results 19 issues of ilcpm

from markdown to docx ``` $$\underline{123}$$ ``` ![image](https://user-images.githubusercontent.com/36830343/175773021-057fb37a-5f01-403f-9b51-e1bf9be6c337.png)

bug
format:Docx
writer

### 联系方式 _No response_ ### 发生了什么? 我复制了一百多个图片文件,然后不小心按下了贴图才快捷键,然后…… 我的老天爷呀,你不知道我经历了什么 我甚至不能用任务管理器结束它,因为结束之后下次启动它又会再来一次,是的,再来一次,你没有听错 真的,老伙计,优化一下它,求求了 ### 运行平台 微软商店 ### 软件版本 2.7.3 (2022.01.30)

我写了一个python文件,并通过命令行利用CTH运行,调用powershell将运行结果用win10的通知展示出来 这样我只需要按下设定的快捷键,就能执行对应的命令并看到运行结果 我并没有设定运行完毕后驻留python,而是直接退出 但CTH的逻辑应该是,它仅仅启动了python,而并没有停止,所以需要先按快捷键停止,再按第二次快捷键才重新运行 ![image](https://user-images.githubusercontent.com/36830343/91655481-6323fc80-eae3-11ea-9f26-c097cb180373.png) 这是我执行完毕后的样子,CTH察觉到了程序已经停止了,所以显示的是“启用”,但是仍然在按照“先停止再执行”的逻辑,需要我按两次运行的快捷键

bug

如图,人在睡觉,看样子应该是从早上7点就一直亮到了11点半,息屏的呼吸灯闪烁亮了4个半小时,耗电很多 能不能加个单次最大闪烁时长?或者7点的勿扰时间结束后没打开手机就不闪烁? 前面今天都没反应过来,今天才想起来可能是这个导致的耗电增加 ![Screenshot_20211210-113437](https://user-images.githubusercontent.com/36830343/145513680-ff50ecb9-9343-4d7c-97a6-f661e306fc91.jpg)

开个贴记录一下 WSL下ctex默认使用fandol字体编译,得到的PDF为fandol字体,和Windows平台的编译结果有肉眼可见的差异 上:Windows平台下得到的PDF文件,下:WSL默认情况下得到的PDF文件 (WSL下的字体更粗,正文的逗号看起来很奇怪) ![image](https://user-images.githubusercontent.com/36830343/204100863-6a2f7c70-d09f-4c60-bd49-2ab7e75e9525.png) ![image](https://user-images.githubusercontent.com/36830343/204100875-c84e1c77-6beb-4b9d-81d9-c28edf685fd5.png) 具体操作步骤为: 1. 百度“WSL Windows字体”相关内容,把Windows的字体映射到WSL 2. 修改cquthesis.dtx第899行和901行,添加参数`fontset=none`,屏蔽掉ctex自动的系统平台检测 ![image](https://user-images.githubusercontent.com/36830343/204100572-750856f3-3e44-4ac5-bb5b-c08ee3998110.png) 3. 运行命令`latex cquthesis.ins`刷新模板 3. 在main.tex的导言区新增设定`\ctexset{fontset=windows}` ![image](https://user-images.githubusercontent.com/36830343/204100638-ea112bc5-ee1a-40db-bbe1-183a87815ac5.png) 而后即可正常编译得到以Windows字体输出的PDF文件;如需继续使用fandol字体,修改上述`fontset=`后的参数即可 使用WSL+Windows字体的编译时间: ![image](https://user-images.githubusercontent.com/36830343/204101146-0d515b70-e38c-42c8-9566-fd5085a2e3ed.png) 使用WSL+默认字体的编译时间: ![image](https://user-images.githubusercontent.com/36830343/204101189-4e3f0768-e7ab-449a-bb2b-03fbb105ddcd.png) 使用Windows平台的编译时间: ![image](https://user-images.githubusercontent.com/36830343/204101213-d2a62834-e666-42b9-8196-42ea82389cb0.png) 也就是说,在Windows平台下使用WSL虚拟机的编译时间仅为直接使用Windows的编译时间的一半

knowledge base

![image](https://github.com/wmjordan/PDFPatcher/assets/36830343/a99b38aa-04e0-4016-99ca-3fd875a02615) ![image](https://github.com/wmjordan/PDFPatcher/assets/36830343/a8dd401e-9bfe-40ab-a038-b8ce37a64256) 转换以下PDF文件为TIFF时提示内存不足,但是转换为黑白的PNG就不会有这个提示 [GBT 1.1-2020 标准化工作导则 第1部分:标准化文件的结构和起草规则.pdf](https://github.com/wmjordan/PDFPatcher/files/12912219/GBT.1.1-2020.1.pdf)

As saying in #49, if there are Chinese characters or any characters need to be urlencoding in the params, postcode can't send requests properly, we have to encode the characters...

我想用pandoc的filter对一些特定类型的代码块进行处理,但是发现在MPE里无法得到处理之后的结果,所有的代码块都跟没处理一样 于是我修改filter做了测试,发现filter收到的代码块的类型classes全部都是“text”,导致filter无法正确识别,也就无法进行处理了 (就是说原本Python类型的代码块,到了filter那里得到的是text类型的代码块) 这是一段测试Markdown: ![image](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/assets/36830343/27776a4f-27e6-4229-9c9a-909d46ea5efd) 这是我用Python写的filter中的有效代码: ![image](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/assets/36830343/5fb1cd31-624e-46fa-9f9c-99d96c7c6389) 这是MPE预览得到的内容 ![image](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/assets/36830343/5794575e-82e4-4c67-9f36-3cab8a38a65f) (就是说原本Python类型的代码块,到了filter那里得到的是text类型的代码块) 我猜出现这样问题的原因是因为MPE的code chunks功能,但是我已经在设置里关闭了“脚本执行”功能,按理说MPE不应该在这种情况下继续修改代码块的类型才对,希望能修复这个问题 ![image](https://github.com/shd101wyy/vscode-markdown-preview-enhanced/assets/36830343/016cf678-8f1c-4fa9-b0a6-2c6b3a18b733)

bug

Thanks for your work, this helps me a lot. But there's a problem I found when working with the DOCX format. --- I dont want to have a docx with...

enhancement

(this issue is copied from https://github.com/jgm/pandoc/issues/9480) since we have ListAttributes for OrderedList: ``` OrderedList ListAttributes [[Block]] type ListAttributes = (Int, ListNumberStyle, ListNumberDelim) ``` so why not add ListAttributes for BulletList?...