I'm looking for a latex algorithm package which is used in the following PDF:
http://siret.ms.mff.cuni.cz/skopal/pub/dfile.pdf
Where can I download it?
Thank you!
Document Classes ⇒ What kind of algorithm package used in this PDF?
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
What kind of algorithm package used in this PDF?
I assume that it's algorithm2e. You can install it very easy with the package manager of your LaTeX distribution.
As soon as the problem is sored out, please act exactly according to Section 3 of the Board Rules.
Best regards and welcome to the board
Thorsten
As soon as the problem is sored out, please act exactly according to Section 3 of the Board Rules.
Best regards and welcome to the board
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
What kind of algorithm package used in this PDF?
Thank you very much. So how can I customize the package, for example to change keywords: begin -> { , end -> } etc...
and if the block contains only 1 row how do eliminate { and } (please see below).
and if the block contains only 1 row how do eliminate { and } (please see below).
Code: Select all
double func(param1) {
if cond1 then {
.....
if cond2 then // this block contains only 1 statement and
res = 1 // without parentheses
} else {
.....
}
return res }