mirror of
https://github.com/wassname/steer-heal-love.git
synced 2026-06-27 15:32:28 +08:00
7db5a56cb1
docs/writeup/paper.qmd (2pp NeurIPS), references.bib, neurips_2023.sty, the quarto _extensions. justfile gains `paper` (latex) and `paper-html` (no latex) recipes. gitignore the generated paper.pdf/paper.tex and the transient .claude/. Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com>
21 lines
372 B
TeX
21 lines
372 B
TeX
$-- Implements the frontmatter, title page, and abstract.
|
|
$--
|
|
$-- %%%% TODO %%%%%
|
|
$-- Customize is needed, otherwise remove this partials to use Quarto default one
|
|
$-- %%%%%%%%%%%%%%%%
|
|
$if(has-frontmatter)$
|
|
\frontmatter
|
|
$endif$
|
|
$if(title)$
|
|
$if(beamer)$
|
|
\frame{\titlepage}
|
|
$else$
|
|
\maketitle
|
|
$endif$
|
|
$if(abstract)$
|
|
\begin{abstract}
|
|
$abstract$
|
|
\end{abstract}
|
|
$endif$
|
|
$endif$
|