作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 pandoc 并用 Markdown 编写我的文本。为了创建我自己的风格,我使用了一个自定义的 latex 模板。
我想用颜色设置所有粗体字的样式。所以当我输入 **a word**
这个词不仅应该是粗体,还应该是例如蓝色。
在我的 latex 模板文件中使用以下内容
\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}
\renewcommand{\textbf}{\boldblue}
pandoc myfile -f markdown -t latex --template==mytemplate -o myfile.pdf
TeX capacity exceeded, sorry (grouping levels = 255)
\newcommand\boldblue[1]{\textcolor{blue}{\textbf{#1}}}
$\boldblue{some text}$
在我的 Markdown 文件中,它可以工作。
**<word>**
设置新命令?
最佳答案
经过更多研究后,我使用 \let
找到了以下解决方案哪个有效:
\let\oldtextbf\textbf
\renewcommand\textbf[1]{{\color{blue}\oldtextbf{#1}}}
**<some text>**
latex /pdf 中的粗体和蓝色。
关于latex - Pandoc Markdown 粗体和颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52384665/
下面是我用来制作 1px 文本描边轮廓的代码。但是如何使轮廓变粗呢?如果我只是用“5px”替换所有“1px”,结果看起来很疯狂。 HTML Hello! CSS .element { color:
我是一名优秀的程序员,十分优秀!