Referring to a table in LaTeX

You must place the label after a caption in order to for label to store the table’s number, not the chapter’s number. \begin{table} \begin{tabular}{| p{5cm} | p{5cm} | p{5cm} |} — cut — \end{tabular} \caption{My table} \label{table:kysymys} \end{table} Table \ref{table:kysymys} on page \pageref{table:kysymys} refers to the …

LaTex errors: unit of measure (pt inserted)

Here are some considerations: While \MinNumber is defined to be 0, you have a number that is smaller than that in the table (-0.01). If you’re performing a test on dimensions (\ifdim <dimA><relation><dimB>) you need to make sure both <dimA> and <dimB> are dimensions. In your case you have\ifdim#1pt>\MidNumber and \MidNumber is clearly not a dimension. It is just a number (0.8). That’s the main … Read more

Footnotes for tables in LaTeX

This is a classic difficulty in LaTeX. The problem is how to do layout with floats (figures and tables, an similar objects) and footnotes. In particular, it is hard to pick a place for a float with certainty that making room for the associated footnotes won’t cause trouble. So the standard tabular and figure environments don’t even try. What … Read more

References with text in LaTeX

Have a look to this wiki: LaTeX/Labels and Cross-referencing: The hyperref package automatically includes the nameref package, and a similarly named command. It inserts text corresponding to the section name, for example:

How can I highlight text in latex

This links look useful: Insert symbols inside verbatim mode LaTeX Putting math inside a verbatim environment without altering the formatting If you just wanted graph.exe I would suggest using \begin{verbatim} graph.exe \end{verbatim} or \verb+graph.exe+ . However you want to use the <..> expression which can be created with $ \langle … \rangle $ . The $..$ indicates inline math mode. Those two links discuss getting verbatim text … Read more