Skip to content
Permalink
Browse files
version presented
  • Loading branch information
James Brusey committed Mar 25, 2022
1 parent a100a32 commit 432b5dfa0cef86378649ccfc04c882771eaaf5c5
Showing 1 changed file with 15 additions and 3 deletions.
@@ -198,10 +198,22 @@ a.csv: gen.py
+ More flexible than Rmarkdown
+ Easy to change document class
+ Can include many different programming languages within the one document
* Problems: using a different latex class
#+BEGIN_SRC org :exports code

* Using a different latex class
1. Your org mode document will need =#+latex_class: IEEEtran=
2. You'll need to configure Emacs using something like:
#+BEGIN_SRC emacs-lisp
(add-to-list 'org-latex-classes
'("IEEEtran"
"\\documentclass\[10pt\]\{IEEEtran\}"
("\\section\{%s\}" . "\\section*\{%s\}")
("\\subsection\{%s\}" . "\\subsection*\{%s\}")
("\\subsubsection\{%s\}" . "\\subsubsection*\{%s\}")
("\\paragraph\{%s\}" . "\\paragraph*\{%s\}")
))

#+END_SRC
* Formatting numbers


* Further reading

0 comments on commit 432b5df

Please sign in to comment.