Tagged Questions
5
votes
1answer
88 views
How to make the line number in algorithm shown in bold
I have tried following which works (making the number in second line bold)
\begin{algorithm}[h]
\begin{algorithmic}[1]
\State TSO.assignStartTs()
{\bf\State} TSO.assignCommitTs()
\end{algorithmic}
...
5
votes
1answer
93 views
Is it possible to change the font of line numbers in a code listing?
Using LyX I can add line numbers to my code listing. However, these are in the document (serif/Roman) font and look strange next to code blocks (Typewriter font). Is it possible to change the font of ...
3
votes
3answers
402 views
adding captions outside of a figure or table?
For my thesis, I have written a computer program that reads in a parameter file. I want to show the parameter file in my thesis but am not sure what the best way to go about this is.
Ultimately, I ...