mirror of https://gitlab.com/pamhyr/pamhyr2
35 lines
1.6 KiB
Org Mode
35 lines
1.6 KiB
Org Mode
# latex.org -- Pamhyr documentation latex config
|
|
# Copyright (C) 2023 INRAE
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#+LaTeX_CLASS: PamhyrDoc
|
|
|
|
# Source code blocks
|
|
#+LATEX_HEADER: \usepackage{minted}
|
|
#+LATEX_HEADER: \usemintedstyle{emacs}
|
|
#+LATEX_HEADER: \setminted[c]{fontsize=\footnotesize,encoding=utf8,linenos}
|
|
#+LATEX_HEADER: \setminted[c++]{breaklines,fontsize=\footnotesize,encoding=utf8,linenos}
|
|
#+LATEX_HEADER: \setminted[shell]{breaklines,fontsize=\footnotesize}
|
|
#+LATEX_HEADER: \setminted[python]{breaklines,fontsize=\footnotesize,linenos}
|
|
#+LATEX_HEADER: \setminted[scheme]{breaklines,fontsize=\footnotesize}
|
|
#+LATEX_HEADER: \setminted[commun-lisp]{breaklines,fontsize=\footnotesize}
|
|
#+LATEX_HEADER: \setminted[text]{breaklines,fontsize=\footnotesize}
|
|
#+LATEX_HEADER: \setminted[llvm]{breaklines,fontsize=\footnotesize}
|
|
|
|
#+LATEX_HEADER: \BeforeBeginEnvironment{minted}{\begin{tcolorbox}[boxsep=0pt, left=0.1cm, right=0.1cm, arc=0pt, boxrule=0.5pt, colback=white]}%
|
|
#+LATEX_HEADER: \AfterEndEnvironment{minted}{\end{tcolorbox}}%
|