/usr/share/codeblocks/lexers/lexer_latex.sample is in codeblocks-common 10.05-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | \documentclass[12pt]{article}
\begin{document}
\section{First section}
\begin{table}[!ht]
\centering
\begin{tabular}{|r|l|}
\hline
row1col1 & row1col2\\
\hline
row2col1 & row2col2\\
\hline
\end{tabular}
\caption{A table caption}
\label{tab_the_table}
\end{table}
\subsection{First sub-section}
\emph{Hello} \texttt{World} to \LaTeX.\\
Look up the table \ref{tab_the_table}!
\begin{itemize}
\item one
\item two
\item three
\end{itemize}
\subsection{Second sub-section}
% Believe in Einstein.
$E = m \cdot c^2$... for real.
\end{document}
|