Tagged Questions
1
vote
1answer
59 views
Algorithm code width problem
I have a problem in the width of the algorithm which I wrote as shown below, and I need to write it in a better way but I can't, any help?
This is my code:
\begin{algorithmic}
\WHILE{$GenC[i] ...
3
votes
1answer
98 views
How to remove newline character after case statement in algorithm2e?
I don't want any newline character after case statement. How can I do that?
This is my code:
\begin{algorithm}[t]
\SetInd{0.5em}{0.5em}
\KwIn{Data $\mathsf{D}$}
\KwOut{List of Simple Hints}
...
6
votes
1answer
369 views
Adjust the indentation whithin the algorithmicx-package when a line is broken
I have this code
\documentclass{article}
\usepackage{algorithm}
\usepackage{algpseudocode}
\begin{document}
\begin{algorithm}
\caption{Minimal Working Example for my Problem}
...
3
votes
1answer
433 views
Pseudocode overflow out of column
I am writing pseudocode using the algorithmicx package in IEEEtran class (double column). My problem is, some of the statement in the code are quite long which I expected to wrap to next line. ...
1
vote
1answer
251 views
Algorithmic package for loop and comment at the same line
I want to have the following output using algorithmic package:
for i = 1 : z do // number of rows
x = 1
end for
I use the following tex code:
\begin{algorithmic}
\FOR{$p=1:r$} // number of ...
2
votes
1answer
1k views
Loop conditions in multiple lines using algorithmic package
I am working on a paper in double-column format, and I am using the algorithmic package to typeset my algorithms. One of my while loops' condition is a bit long hence doesn't fit into the column.
...
13
votes
3answers
3k views
Include a line break in algorithmic while maintaining indentation
I have this code:
\DeclareCaptionFormat{algor}{%
\hrulefill\par\offinterlineskip\vskip1pt%
\textbf{#1#2}#3\offinterlineskip\hrulefill}
...
7
votes
1answer
685 views
How to print in algorithmic package for some If condition or For loop in one line?
How to print
\FOR{$j:=0,\ldots,i-1$}
\STATE{$\C_{ij}:=\C_{ii}\cdot\C_{ij}$};
\ENDFOR
in one line instead of two line?
