We respect our clients privacy, that's why we cannot expose our works.
Please send us your inquiry by email or by using the contact form below, and we will be happy to send you samples from our projects.
Samples of LaTeX coding:
% [Clears Running Header Style on the Last Empty Odd pages]
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else%
\hbox{}%
\thispagestyle{empty}%
\newpage%
\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
% [Changes the appearance of section headings]
\makeatletter
\renewcommand{\section}{\@startsection{section}{1}{0mm}
{\baselineskip}%
{\baselineskip}{\noindent\large\bfseries\scshape}}%
\makeatother
% Typeset the Figure name and its number in a bold font, and replace the colon
% that normally appears after the number by a period:
\def\figurename{Figure}
\makeatletter
\renewcommand{\fnum@figure}[1]{\textbf{\figurename~\thefigure}.}
\makeatother
% Tables - use of the \multicolumn command:
\begin{table}
\begin{center}
\begin{tabular}{@{} *{3}{c} @{}}
col 1 & col 2 & col 3 \\
col 1 & \multicolumn{2}{c}{col 2-3 } \\
\end{tabular}
\end{center}
\end{table}
% You can tell LaTeX that a particular column should be a certain
width, with text wrapping within that:
\begin{tabular}{|c|p{3.5in}|c|}
\hline
% LaTeX Coloured Box:
\fcolorbox{blue}{red}%
{\color{white} White text, red background, blue frame}