NominHanggai

Results 12 comments of NominHanggai

Hi @hameerabbasi ! Do we have any progress on parallelism?

> Hi! This will take quite a while; it's a large project. It's on the back burner for now. > > If you would like parallelism today, please consider using...

Thanks for the reply! It will be great if the problem can be solved on the google/TensorNetwork side!

Thanks for the solution, gefux!! I will attach a minimal failing example later.

谢谢指出~ 我不知道为什么会这样,有空会仔细研究一下。你可以在之后提 pull request 的时候(如果会继续提的话😁)暂时把 fontenc 加上吗

有一些 `\label` 和 `\caption` 被我错放在 `threeparttable` 环境里了,应该把它们提出来,放在 `table` 环境里,[5ab99f4](https://github.com/Mulliken/szaboqc/commit/5ab99f485b2f1517f3537dd1cd7682c90b628ac0) 已经把这个错误改正了。 其他的 undefined ref 太多了,之后慢慢改吧 ///

> 还有一些小问题: > > * `\label{t4.12}` 这个写法我感觉是对的,但是始终报错undefined. > > * `\ref{ch:1}` 这种我已经修复了报错,但是编译出来就是“一”而不是”第一章“(如175页),不太好看,或许可以封装一个\chapref{}?或者还有其他优雅的方式吗。 我明天看一下这个

根据这个回答:https://tex.stackexchange.com/a/172742/182597 我重新定义了 hyperref 宏包提供的命令 \sectionautorefname 和 \chapterautorefname 等如下 ``` \def\chapterautorefname~#1\null{第#1章\null} \def\sectionautorefname~#1\null{小节#1)\null} \def\subsectionautorefname~#1\null{小节#1)\null} \def\subsubsectionautorefname~#1\null{小节#1)\null} \def\equationautorefname~#1\null{式(#1)\null} \def\tableautorefname~#1\null{表#1\null} \def\figureautorefname~#1\null{图#1\null}``` 这样的话,只要使用 `\autoref{}` 就能自动带着“第…章”这样的字符了。当然,`\ref` 和 `\eqref` 仍然可以在恰当的时候使用。

> 还有一些小问题: > > * `\label{t4.12}` 这个写法我感觉是对的,但是始终报错undefined. > > * `\ref{ch:1}` 这种我已经修复了报错,但是编译出来就是“一”而不是”第一章“(如175页),不太好看,或许可以封装一个\chapref{}?或者还有其他优雅的方式吗。` `\label{t4.12}` 也已经修复。还是那个问题: `\caption{t4.12}` 被放在 `threeparttable` 环境中而 `\label{t4.12}` 被放在了外面。见 [76775ff](https://github.com/Mulliken/szaboqc/commit/76775ffbdb012c3dacda9d7f92513cbfda9b6236)。

谢谢 @hebrewsnabla ! 😁