Fix LaTeX export of last commit

This commit is contained in:
Gerard Vermeulen 2023-11-25 11:38:14 +01:00
parent d588ea7849
commit 5afa3c9b61

View File

@ -5147,7 +5147,7 @@ Emacs Lisp forms.
#+caption[Benchmark =some= operations on big lists]:
#+caption: Benchmark =some= operations on big lists.
#+name: lst:benchmark-some-big-lists
#+begin_src emacs-lisp -n :results pp silent
#+begin_src emacs-lisp -n :eval no-export :results pp silent
(joaot/with-benchmark-group "\"some\" operation, big lists"
((list1 . (make-list 100000 nil)))
100
@ -5159,7 +5159,7 @@ Emacs Lisp forms.
#+caption[Benchmark =some= operations on small lists]:
#+caption: Benchmark =some= operations on small lists.
#+name: lst:benchmark-some-small-lists
#+begin_src emacs-lisp -n :results pp silent
#+begin_src emacs-lisp -n :eval no-export :results pp silent
(joaot/with-benchmark-group "\"some\" operation, small lists"
((list1 . (make-list 10 nil)))
100000
@ -5172,7 +5172,7 @@ Emacs Lisp forms.
#+caption: Accumulated results of benchmark examples.
#+name: lst:benchmark-example
#+header: :wrap "src emacs-lisp -n"
#+begin_src emacs-lisp -n :exports both :results pp
#+begin_src emacs-lisp -n :eval no-export :exports both :results pp
(joaot/with-benchmark-group "destructuring"
((list1 . (make-list 3 0)))
100000