summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/hybrid-latex/examples/example-02.tex
blob: 6bf01d1052a2bdd6429164cd6fd84a6870db5a14 (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
47
48
49
50
51
52
53
% based on example 7 in pythontex_gallery
% https://github.com/gpoore/pythontex/

\documentclass[12pt]{pylatex}
\usepackage{examples}

\begin{document}

\section*{A table of derivatives and anti-derivatives}

This example is based upon a nice example in the Pythontex gallery, see
\ \url{https://github.com/gpoore/pythontex/}.
It uses a tagged block to capture the {\tt\small Sympy} output for later use
in the body of the LaTeX table.

\lstset{numbers=left}

\begin{minipage}[t]{0.72\textwidth}
\begin{python}
   from sympy import *

   var('x')

   # Create a list of functions to include in the table
   funcs = [['sin(x)',r'\\'],       ['cos(x)',r'\\'],       ['tan(x)',r'\\'],
            ['asin(x)',r'\\[5pt]'], ['acos(x)',r'\\[5pt]'], ['atan(x)',r'\\[5pt]'],
            ['sinh(x)',r'\\'],      ['cosh(x)',r'\\'],      ['tanh(x)',r' ']]

   # pyBeg (CalculusTable)
   for func, eol in funcs:
       myddx = 'Derivative(' + func + ', x)'
       myint = 'Integral(' + func + ', x)'
       print(latex(eval(myddx)) + '&=' + latex(eval(myddx + '.doit()')) + r'\quad & \quad')
       print(latex(eval(myint)) + '&=' + latex(eval(myint + '.doit()')) + eol)
   # pyEnd (CalculusTable)
\end{python}
\end{minipage}
\hskip 1cm
\begin{minipage}[t]{0.28\textwidth}
\begin{latex}
   \begin{align*}
      \py {CalculusTable}
   \end{align*}
\end{latex}
\end{minipage}

\clearpage

\begin{align*}
   \py {CalculusTable}
\end{align*}

\end{document}