-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #73 from JuliaTrustworthyAI/72-use-quarto-extension
72 use quarto extension
- Loading branch information
Showing
54 changed files
with
8,797 additions
and
3,693 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
title: Juliacon-proceedings | ||
author: pat-alt | ||
version: 1.0.0 | ||
quarto-required: ">=1.3" | ||
contributes: | ||
formats: | ||
common: | ||
toc: false | ||
number-sections: true | ||
filters: | ||
- juliacon-proceedings.lua | ||
code-line-numbers: true | ||
linestretch: 1 | ||
link-citations: true | ||
pdf: | ||
include-in-header: header.tex | ||
template-partials: | ||
- "partials/title.tex" | ||
- "partials/_authors.tex" | ||
- "partials/_affiliations.tex" | ||
- "partials/before-body.tex" | ||
- "partials/doc-class.tex" | ||
format-resources: | ||
- juliacon.cls | ||
- journal_dat.tex | ||
- jlcode.sty | ||
- logojuliacon.pdf | ||
- juliacon.bst | ||
# Content to add in header that your format is using | ||
header-includes: | | ||
\usepackage{orcidlink} | ||
\definecolor{mypink}{RGB}{219, 48, 122} | ||
pdf-engine: latexmk | ||
fontfamily: tgtermes | ||
cite-method: biblatex | ||
html: | ||
css: styles.css | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
% Keywords command | ||
\providecommand{\JCONkeywords}[1] | ||
{ | ||
\small | ||
\section*{Keywords} #1 | ||
} | ||
|
||
% Two-column table | ||
% Lifted from https://github.com/quarto-journals/elsevier/blob/main/_extensions/elsevier/partials/_two-column-longtable.tex. | ||
\usepackage{float} | ||
\makeatletter | ||
\let\oldlt\longtable | ||
\let\endoldlt\endlongtable | ||
\def\longtable{\@ifnextchar[\longtable@i \longtable@ii} | ||
\def\longtable@i[#1]{\begin{figure}[H] | ||
\onecolumn | ||
\begin{minipage}{0.5\textwidth} | ||
\oldlt[#1] | ||
} | ||
\def\longtable@ii{\begin{figure}[H] | ||
\onecolumn | ||
\begin{minipage}{0.5\textwidth} | ||
\oldlt | ||
} | ||
\def\endlongtable{\endoldlt | ||
\end{minipage} | ||
\twocolumn | ||
\end{figure}} | ||
\makeatother | ||
|
||
% Remove whitespace after paragraphs | ||
\setlength{\parskip}{0pt} | ||
|
||
\bibliographystyle{juliacon} |
Oops, something went wrong.