latex algorithm加黑
时间: 2023-09-13 21:09:08 浏览: 280
Latex algorithm2e 算法伪代码 官方介绍文档.pdf
5星 · 资源好评率100%
要使 LaTeX algorithm 中的 "Algorithm" 加粗,可以使用 algorithm2e 宏包。首先,确保已经正确加载了 algorithm2e 宏包。然后,在 \begin{algorithm} 之前添加以下命令:
\SetAlgoCaptionSeparator{.}
\renewcommand{\algorithmcfname}{\textbf{Algorithm}}
这些命令会设置算法标题的分隔符和算法关键词的样式。接下来,在你的算法代码之前添加以下命令:
\textbf{Algorithm} \caption{Your caption}\label{alg:label}
这个命令会将 "Algorithm" 加粗,并在标题前显示。在你的算法代码中,你可以继续使用 \State 和其他算法关键字来编写伪代码。
在你的算法代码结束之后,添加以下命令:
\end{algorithm}
这个命令会结束算法环境。
总结一下,要使 LaTeX algorithm 中的 "Algorithm" 加粗,你需要:
1. 加载 algorithm2e 宏包
2. 在 \begin{algorithm} 之前添加 \SetAlgoCaptionSeparator{.} 和 \renewcommand{\algorithmcfname}{\textbf{Algorithm}}
3. 在算法标题之前添加 \textbf{Algorithm} \caption{Your caption}\label{alg:label}
4. 在算法代码之后添加 \end{algorithm}
这样就可以使算法标题中的 "Algorithm" 加粗了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Latex algorithm2e 算法伪代码 官方介绍文档.pdf](https://download.csdn.net/download/yyl424525/12045988)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [Latex Algorithm 没有加粗](https://blog.csdn.net/jh1513/article/details/129124385)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文