gpt4 book ai didi

latex - Pandoc Markdown 粗体和颜色

转载 作者:行者123 更新时间:2023-12-04 01:52:24 25 4
gpt4 key购买 nike

我正在使用 pandoc 并用 Markdown 编写我的文本。为了创建我自己的风格,我使用了一个自定义的 latex 模板。

我想用颜色设置所有粗体字的样式。所以当我输入 **a word**这个词不仅应该是粗体,还应该是例如蓝色。

在我的 latex 模板文件中使用以下内容

\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}
\renewcommand{\textbf}{\boldblue}

使用转换为 pdf 时给我一个错误
pandoc myfile -f markdown -t latex --template==mytemplate -o myfile.pdf
其中说

TeX capacity exceeded, sorry (grouping levels = 255)



但是:当我只设置 newcommand
\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}

我可以写 $\boldblue{some text}$在我的 Markdown 文件中,它可以工作。

问题:如何为 **<word>** 设置新命令?

谢谢!

最佳答案

经过更多研究后,我使用 \let 找到了以下解决方案哪个有效:

\let\oldtextbf\textbf
\renewcommand\textbf[1]{{\color{blue}\oldtextbf{#1}}}

在模板文件中使用此代码会转换 Markdown 的 **<some text>** latex /pdf 中的粗体和蓝色。

关于latex - Pandoc Markdown 粗体和颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52384665/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com