I need to cancel 'Algorithm' term in the beginning of environment and rename it because of language of my thesis.
I will be grateful for your help. Thank you
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[IL2]{fontenc}
\usepackage[czech]{babel}
\usepackage{mathptmx}
\usepackage{amsmath,amssymb,amsthm}
\usepackage{pseudocode}
\begin{document}
\begin{pseudocode}{2. Varianta: Diskrétní komutační funkce $N_{xy}$}{?}
... some statements
\end{pseudocode}
\end{document}Code: Select all
\documentclass{book}
\usepackage{xpatch}% Added
\usepackage{pseudocode}
\xpatchcmd{\pseudocode }{Algorithm}{Wombat}{}{}
\xpatchcmd{\pseudocode }{Algorithm}{Nasenb\"ar}{}{}
\begin{document}
\begin{pseudocode}{capybara}{?}
\end{pseudocode}
\end{document}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis