Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

LATEX TIPS

SlNO Question Latex Code Output


1 Math Set with \documentclass{article}
Down Arrow \usepackage{mathtools}
Reprsentation \begin{document}
My set = \{ 1,2,$\underset{\substack{\uparrow}}{3}$,4,5 \}
\end{document}

2 Bookmark \documentclass[a4paper]{report}
\usepackage{bookmark}
\begin{document}
\tableofcontents
\chapter{P}
Some text
\end{document}

3 Hyperlink \documentclass{article}
\usepackage{hyperref}
\begin{document}
\hyperlink{page.3}{Go to page 2}
\newpage
text on page 2
\end{document}

LATEX TIPS KESAVARAJA.D


LATEX TIPS

4 Hyper \documentclass{article}
Reference \usepackage{amsmath}
\usepackage{hyperref}
\begin{document}
\begin{equation}\label{eq:test}
a=b
\end{equation}
\newpage
Click Here \eqref{eq:test}
\end{document}
5 Table with \documentclass{article}
Images \usepackage{graphicx}
\begin{document}
\begin{table}[ht]
\caption{table caption...}
\centering
\begin{tabular}{cc}
\includegraphics[width=45mm]{k7.jpg}
&\includegraphics[width=45mm]{k7.jpg}\\
\newline
\includegraphics[width=45mm]{k7.jpg}
&\includegraphics[width=45mm]{k7.jpg}\\
\end{tabular}
\end{table}
\end{document}

LATEX TIPS KESAVARAJA.D

You might also like