Here are some of our recent typesetting projects. We respect our clients privacy, that's why we cannot expose all of our works.
Samples (click for larger
image, or right click to download
the PDF file)
Price/Page
Details
Price: 5.00 USD per page.
"Euclidean and Transformational Geometry: A Deductive Inquiry", by Shlomo Libeskind (Professor, Dept. of Mathematics, University of Oregon, USA).
Published by Jones & Bartlett Publishers, 2007.
ISBN 0763743666, 9780763743666. 371 pages.
Click here to look inside on Google Books!
The Author mentioned me in the Acknowledgments section... Thank you, dear Shlomo!
Click here to look inside on Amazon.com Online Reader!
Price: 4.50 Euros per page.
Math paper converted for the SPRINGER Journal "Computational Mechanics" format.
Price: 4.50 Euros per page.
Math paper converted for the ASME Journal.
Samples of LaTeX typesetting code:
% [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}