summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/moodle/test/test_includegraphics_with_svg.tex
blob: 0c51d2d73d46bfffcb2ad645f957ebd9b3e66b5c (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
% !TeX encoding = UTF-8
% !TeX spellcheck = en_US
% !TEX TS-program = lualatex
\documentclass{article}
\usepackage[nostamp,svg]{moodle}
\ifPDFTeX % FOR LATEX and PDFLATEX
	\usepackage[utf8]{inputenc} % necessary
	\usepackage[T1]{fontenc} % necessary
\else % assuming XELATEX or LUALATEX
	\usepackage{fontspec}
\fi

\begin{document}

\section*{Introduction}

This document is intended to check picture inclusion using 
\verb|\includegraphics| together with the \texttt{svg} package option.
When this option is used, vector graphics will be converted to SVG rather than 
being rasterized. The picture inclusion using \verb|\includegraphics| is mostly 
unchanged. If SVG files are included, they are converted on-the-fly to PDF.
Conversions from and to SVG are performed using \textsf{Inkscape}. The 
\textsf{Scour} utility is used to perform an optimization on intermediate SVG 
files, before inclusion to the XML.

\begin{quiz}{Scalable Vector Graphics}

\begin{multi}{Picture}
\includegraphics{fig/MoodlE_logo.SVG}
\item[feedback={\includegraphics{fig/2 2.pdf}}]* \includegraphics{fig/3.gif}
\item[feedback={\includegraphics{fig/4.jpg}}] \includegraphics{fig/5.jpeg}
\end{multi}

\graphicspath{{./fig/}}

\begin{matching}[dd]{Picture}
\includegraphics[width=2cm]{MoodlE_logo.SVG}
% on Linux, if .SVG is omitted moodle tries to manipulate "MoodlE_logo.svg"
\item \includegraphics{2 2} \answer \includegraphics{3}
\item \includegraphics{4} \answer \includegraphics{5}
\item \includegraphics{3} \answer \includegraphics[width=2em]{2 2}
\end{matching}

\end{quiz}

\end{document}