Text Formatting ⇒ Unbold algorithm caption
Unbold algorithm caption
Can anybody tell me how to unbold algorithm caption?
When I use algorithmic and algorithm packages, I got following caption:
Algorithm 1: My first algorithm
What I want is to replace bold "Algorithm" with unbold "Algorithm" and to replace ":" with ".", e.g.
Algorithm 1. My first algorithm
Any help?
Thanks in advance!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Unbold algorithm caption
I don't know packages with these names. At least they are not listed on CTAN. Build a minimal working example (MWE) to shows what you are doing.sladicg wrote:[...] When I use algorithmic and algorithm packages, I got following caption [...]
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Unbold algorithm caption
Code: Select all
\documentclass{article}
\usepackage{algorithm,algorithmic}
\usepackage{caption}
\captionsetup[algorithm]{labelfont=rm,labelsep=period}
\begin{document}
\begin{algorithm}[H]
\caption{Calculate $y = x^n$}
\label{alg1}
\begin{algorithmic}
\REQUIRE $n \geq 0 \vee x \neq 0$
\ENSURE $y = x^n$
\\ \ldots
\end{algorithmic}
\end{algorithm}
\end{document}