vimtex/test/features/syntax/test-syntax.tex
2017-01-14 22:14:26 +01:00

123 lines
1.9 KiB
TeX

\documentclass{article}
\usepackage{minted}
\begin{document}
\begin{lstlisting}
testing
\end{lstlisting}
\begin{align}
f(x) = 0
\end{align}
\begin{equation}
f(x) = 0
\end{equation}
\begin{quote}
test
\end{quote}
\begin{dot2tex}
graph graphname {
a -- b;
b -- c;
b -- d;
d -- a;
}
\end{dot2tex}
\begin{gnuplot}[terminal=..., terminaloptions=...]
plot file using 1:2 with lines
\end{gnuplot}
\begin{minted}{python}
def function(arg):
pass
\end{minted}
\begin{cppcode}
int main() {
printf("hello, world");
return 0;
}
\end{cppcode}
\begin{cppcode_test}
int main() {
printf("hello, world");
return 0;
}
\end{cppcode_test}
\begin{cppcode*}{a=0,
b=1}
int main() {
printf("hello, world");
return 0;
}
\end{cppcode*}
\begin{minted}{c}
int main() {
printf("hello, world");
return 0;
}
\end{minted}
\begin{minted}[mathescape,
linenos,
numbersep=5pt,
gobble=2,
frame=lines,
framesep=2mm]{csharp}
string title = "This is a Unicode π in the sky"
/*
Defined as $\pi=\lim_{n\to\infty}\frac{P_n}{d}$ where $P$ is the perimeter
of an $n$-sided regular polygon circumscribing a
circle of diameter $d$.
*/
const double pi = 3.1415926535
\end{minted}
% Urls and hrep
\url{http://www.google.com}
\url+http://www.google.com+
\href{http://example.com}{Title text $with math$}
\urldef{\mysite}\url{http://example.com}
\hyperref[asdasd]{asd}
% Cite commands
\cite{}
\citet*{}
\citep{bibtexkey1}
\citep[e.g.][]{bibtexkey2}
\citealt{}
\citealt*{}
\citealp{}
\citealp*{}
\citenum{}
\citetext{}
\citeauthor{}
\citeauthor*{}
\citeyear{}
\citeyearpar{}
\bibentry{}
\directlua{
if pdf.getminorversion() \string~= 7 then
print "pfd version 1.7"
end
}
\begin{luacode}
if pdf.getminorversion() \string~= 7 then
print "pfd version 1.7"
end
\end{luacode}
\end{document}
% vim: fdl=9