-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathexample.tex
46 lines (36 loc) · 1.38 KB
/
example.tex
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
% Template: Auxiliar LaTeX
% Documento: Archivo de ejemplo
% Versión: 8.3.4 (07/02/2025)
% Codificación: UTF-8
%
% Autor: Pablo Pizarro R.
%
% Manual template: [https://latex.ppizarror.com/auxiliares]
% Licencia MIT: [https://opensource.org/licenses/MIT]
% Pregunta en forma de título
\newquestion{Pregunta 1}
% Párrafo
\lipsum[10-11]
\insertimage[\label{img:testimage}]{ejemplos/test-image.png}{scale=0.15}{Ubi sunt vobis? autem \quotes{Internet}}
Aequatio videbitur\footnote{ $Q_e = max\big(1 \dots n\big)$} infra:
% Ecuación
\insertequation[\label{eqn:eqn-larga}]{\lpow{\Lambda}{f} = \frac{L\cdot f}{W} \cdot \frac{\pow{\lpow{Q}{e}}{2}}{8 \pow{\pi}{2} \pow{W}{4} g}+ \sum_{i=1}^{l} \frac{f \cdot \big( M - d\big)}{l \cdot W} \cdot \frac{\pow{\big(\lpow{Q}{e}- i\cdot Q\big)}{2}}{8 \pow{\pi}{2} \pow{W}{4} g}}
% Pregunta encerrada en un recuadro
\newboxquestion{P2} \lipsum[4]
% Lista
\begin{enumerate}
\item {$Q = \omega \cdot \sum i$}
\item {$e = i \pm \sqrt{1+k}$}
\item {$K = \frac{1 + e}{1 - \delta}$}
\end{enumerate}
% Pregunta encerrada en un recuadro más control
\newboxquestion{P3} (\textbf{P1 Control 2 2017/1}) \lipsum[117] \\
\begin{sourcecode}{python}{}
import numpy as np
def incmatrix(genl1, genl2):
m = len(genl1)
n = len(genl2)
M = None # Comentario 1
VT = np.zeros((n*m, 1), int) # Comentario 2
\end{sourcecode}