templklklk

Results 6 comments of templklklk

> 我这边也是相同的情况,目前不清楚原因。 > > 我个人猜测: WPS PDF 里选中文字,是WPS自己实现的效果,看上去选中了但不是在系统中真的选中了。 请问这个问题解决了吗? 能否通过支持复制翻译功能,从剪切板里获取文字?

> 请提供两三个文档给我看看 https://web.engr.oregonstate.edu/~sinisa/courses/OSU/CS261/CS261_Textbook/Chapter01.pdf https://web.engr.oregonstate.edu/~sinisa/courses/OSU/CS261/CS261_Textbook/Chapter02.pdf https://web.engr.oregonstate.edu/~sinisa/courses/OSU/CS261/CS261_Textbook/Chapter03.pdf 以此类推

> > 我先做一个功能,允许你保存“自动生成书签”功能中的筛选条件,打开另一个PDF文档时,可以把它重新读出来,试试是否能筛选生成书签。 > > 请下载新的测试版,它增加了保存和读取自动生成书签配置的功能。 ![image](https://user-images.githubusercontent.com/12182730/159612601-3af45f78-e7b9-4211-a587-942bd11f2bcc.png) 能成功,但在PDF补丁丁里生成的书签显示是空白的,保存后的文档中书签正常 ![image](https://user-images.githubusercontent.com/59308951/159710581-6a8edd6e-eb6d-48b2-954c-386069eabbc0.png)

另外,目前这样还是手动一个个生成,我发现已有功能能做到类似效果,可以跳过保存步骤,就是直接把下个文件拉到书签栏。 ![image](https://user-images.githubusercontent.com/59308951/159713127-0362eaf3-0479-4d9f-9f6c-1d62504f2b5f.png)

``` // /task/switch.rs /// Switch to the context of `next_task_cx_ptr`, saving the current context in `current_task_cx_ptr`. pub fn __switch(current_task_cx_ptr: *mut TaskContext, next_task_cx_ptr: *const TaskContext); ``` ``` # /task/switch.S __switch: #...