Path: blob/main/src/resources/formats/beamer/pandoc/pandoc.tex
12923 views
$-- part of this file are now in 'common.latex' pandoc's template1$-- however we keep this partial template for backward compatibility2$-- as `pandoc.tex` is a custom Quarto partial that we insert in Pandoc's one.3$if(highlighting-macros)$4$highlighting-macros$5$endif$67$tables.tex()$8$graphics.tex()$9$if(svg)$10\usepackage{svg}11$endif$1213$--14$-- strikeout/underline15$--16$if(strikeout)$17\ifLuaTeX18\usepackage{luacolor}19\usepackage[soul]{lua-ul}20\else21\usepackage{soul}22$if(beamer)$23\makeatletter24\let\HL\hl25\renewcommand\hl{% fix for beamer highlighting26\let\set@color\beamerorig@set@color27\let\reset@color\beamerorig@reset@color28\HL}29\makeatother30$endif$31$if(CJKmainfont)$32\ifXeTeX33% soul's \st doesn't work for CJK:34\usepackage{xeCJKfntef}35\renewcommand{\st}[1]{\sout{#1}}36\fi37$endif$38\fi39$endif$4041$citations.tex()$4243$babel-lang.tex()$4445$--46$-- pagestyle47$--48$if(pagestyle)$49\pagestyle{$pagestyle$}50$endif$5152$--53$-- prevent overfull lines54$--55\setlength{\emergencystretch}{3em} % prevent overfull lines5657$tightlist.tex()$5859$--60$-- subfigure support61$--62$if(subfigure)$63\usepackage{subcaption}64$endif$6566$--67$-- text direction support for pdftex68$--69$if(dir)$70\ifPDFTeX71\TeXXeTstate=172\newcommand{\RL}[1]{\beginR #1\endR}73\newcommand{\LR}[1]{\beginL #1\endL}74\newenvironment{RTL}{\beginR}{\endR}75\newenvironment{LTR}{\beginL}{\endL}76\fi77\ifluatex78\newcommand{\RL}[1]{\bgroup\textdir TRT#1\egroup}79\newcommand{\LR}[1]{\bgroup\textdir TLT#1\egroup}80\newenvironment{RTL}{\textdir TRT\pardir TRT\bodydir TRT}{}81\newenvironment{LTR}{\textdir TLT\pardir TLT\bodydir TLT}{}82\fi83$endif$8485$biblio-config.tex()$8687$--88$-- csquotes89$--90$if(csquotes)$91\usepackage[$for(csquotesoptions)$$csquotesoptions$$sep$,$endfor$]{csquotes}92$endif$9394$for(header-includes)$95$header-includes$96$endfor$979899