generated from adrien/latex-paper
Initial commit
This commit is contained in:
commit
f984a6cb93
12 changed files with 212 additions and 0 deletions
45
.drone.yml
Normal file
45
.drone.yml
Normal file
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
# see https://docs.drone.io/pipeline/configuration/
|
||||
kind: pipeline
|
||||
name: build and upload the paper
|
||||
|
||||
volumes:
|
||||
- name: nix_store
|
||||
host:
|
||||
path: /var/lib/drone/nix
|
||||
|
||||
node:
|
||||
nix: 1
|
||||
|
||||
environment:
|
||||
NIX_PATH: nixpkgs=channel:nixos-unstable
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: nixpkgs/nix:nixos-21.05
|
||||
volumes:
|
||||
- name: nix_store
|
||||
path: /nix
|
||||
commands:
|
||||
- nix-shell --run "make paper"
|
||||
|
||||
- name: upload
|
||||
image: plugins/s3
|
||||
settings:
|
||||
bucket: XXXXXXX
|
||||
access_key:
|
||||
from_secret: aws_access_key_id
|
||||
secret_key:
|
||||
from_secret: aws_secret_access_key
|
||||
source: paper/build/main.pdf
|
||||
strip_prefix: paper/build/
|
||||
target: /
|
||||
path_style: true
|
||||
endpoint: XXXXXXXX
|
||||
region: garage
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
branch:
|
||||
- main
|
10
LICENSE
Normal file
10
LICENSE
Normal file
|
@ -0,0 +1,10 @@
|
|||
This is free and unencumbered software released into the public domain.
|
||||
|
||||
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
|
||||
|
||||
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and
|
||||
successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
For more information, please refer to <http://unlicense.org/>
|
9
Makefile
Normal file
9
Makefile
Normal file
|
@ -0,0 +1,9 @@
|
|||
.PHONY: all paper clean
|
||||
|
||||
all: paper
|
||||
|
||||
paper:
|
||||
@$(MAKE) -C ./paper pdf
|
||||
|
||||
clean:
|
||||
@$(MAKE) -C ./paper clean
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# latex-paper
|
||||
|
||||
Un template pour faire des dépôts d'articles de recherche en LaTeX
|
13
paper/.gitignore
vendored
Normal file
13
paper/.gitignore
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
# Latex stuff
|
||||
*.bbl
|
||||
*.aux
|
||||
*.bcf
|
||||
*.blg
|
||||
*.log
|
||||
*.run.xml
|
||||
*.synctex.gz
|
||||
|
||||
# The build folder
|
||||
build/
|
||||
# The output
|
||||
main.pdf
|
38
paper/Makefile
Normal file
38
paper/Makefile
Normal file
|
@ -0,0 +1,38 @@
|
|||
.PHONY: all pdf clean
|
||||
|
||||
# name of the main TeX file and the output PDF
|
||||
TARGET = main
|
||||
|
||||
# Where to find the paper's stuff
|
||||
BUILD_PATH = build
|
||||
FIGS_PATH = figures
|
||||
BIB_PATH = bib
|
||||
SOURCE_FILES = $(shell find . -type f -name "*.tex" -print)
|
||||
CLASS_FILES = $(shell find . -type f -name "*.cls" -print)
|
||||
BIB_FILES = $(shell find $(BIB_PATH) -type f -name "*.bib" -print)
|
||||
FIGURES = $(shell find $(FIGURES_PATH) -type f -print)
|
||||
BUILD_FILES = $(shell find $(BUILD_PATH) -type f -print)
|
||||
|
||||
BIB_PROCESSOR := biber
|
||||
|
||||
all: pdf
|
||||
|
||||
pdf: $(TARGET).pdf
|
||||
|
||||
$(TARGET).pdf: $(SOURCE_FILES) $(BIB_FILES) $(CLASS_FILES) $(FIGURES)
|
||||
@mkdir -p $(BUILD_PATH) > /dev/null 2>&1 || exit 0
|
||||
|
||||
@pdflatex -interaction=nonstopmode -jobname=$(TARGET) -output-directory $(BUILD_PATH) $(TARGET).tex
|
||||
@#if $(BIB_PROCESSOR) == biber
|
||||
@$(BIB_PROCESSOR) --output-directory $(BUILD_PATH) $(TARGET)
|
||||
@#elif $(BIB_PROCESSOR) == bibtex
|
||||
@#@cd $(BUILD_PATH) && $(BIB_PROCESSOR) $(TARGET)
|
||||
@#fi
|
||||
@pdflatex -interaction=nonstopmode -jobname=$(TARGET) -output-directory $(BUILD_PATH) $(TARGET).tex # For biber
|
||||
@pdflatex -interaction=nonstopmode -jobname=$(TARGET) -output-directory $(BUILD_PATH) $(TARGET).tex # For biber
|
||||
|
||||
@ln -fs $(BUILD_PATH)/$(TARGET).pdf $(TARGET).pdf
|
||||
|
||||
clean:
|
||||
@rm $(TARGET).pdf $(BUILD_FILES) > /dev/null 2>&1 || exit 0
|
||||
|
8
paper/bib/introduction.bib
Normal file
8
paper/bib/introduction.bib
Normal file
|
@ -0,0 +1,8 @@
|
|||
@book{de_rosnay_macroscope_1975,
|
||||
title = {Le {{Macroscope}}. {{Vers}} Une Vision Globale},
|
||||
author = {{de Rosnay}, Jo{\"e}l},
|
||||
year = {1975},
|
||||
month = jan,
|
||||
edition = {Le Seuil},
|
||||
language = {french}
|
||||
}
|
0
paper/figures/.placeholder
Normal file
0
paper/figures/.placeholder
Normal file
49
paper/header.tex
Normal file
49
paper/header.tex
Normal file
|
@ -0,0 +1,49 @@
|
|||
\usepackage[english]{babel}
|
||||
\usepackage{lmodern} % The best LaTeX font
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{amssymb}
|
||||
\usepackage{mathtools}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{xspace}
|
||||
\usepackage{hyperref}
|
||||
\usepackage[kerning=true]{microtype} % Cool typography twiks
|
||||
%\usepackage{epigraph} % Badass epigraphs
|
||||
%\usepackage{csquotes} % Multi-lingual quotes
|
||||
%\usepackage{booktabs} % Stylish tables
|
||||
%\usepackage{pifont} % For special characters e.g. checkbox
|
||||
|
||||
|
||||
%%%%%%%%%%%%%%%%%%
|
||||
%% Bibliography %%
|
||||
%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\usepackage[
|
||||
style=numeric-comp,
|
||||
sorting=none,
|
||||
hyperref,
|
||||
singletitle=true,
|
||||
backend=biber]{biblatex}
|
||||
|
||||
\addbibresource{bib/introduction.bib}
|
||||
|
||||
|
||||
%%%%%%%%%%%%
|
||||
%% Macros %%
|
||||
%%%%%%%%%%%%
|
||||
|
||||
\newcommand{\annote}[3]{{%
|
||||
\footnotesize\sffamily%
|
||||
\colorbox{#3}{\bfseries\textcolor{white}{#2}}\hspace{-0.2ex}%
|
||||
{\color{#3}%
|
||||
$\blacktriangleright$%
|
||||
\textit{#1}%
|
||||
$\blacktriangleleft$%
|
||||
}%
|
||||
}}
|
||||
|
||||
% List of available colors:
|
||||
% https://www.w3.org/TR/SVG11/types.html#ColorKeywords
|
||||
\usepackage[svgnames]{xcolor}
|
||||
\newcommand{\todo}[1]{\annote{#1}{Todo}{teal}}
|
4
paper/introduction.tex
Normal file
4
paper/introduction.tex
Normal file
|
@ -0,0 +1,4 @@
|
|||
\section{Introduction}
|
||||
|
||||
Once upon a time in the Wild Wild Net... Systemics!~\cite{de_rosnay_macroscope_1975}
|
||||
\todo{Maybe change that...}
|
21
paper/main.tex
Normal file
21
paper/main.tex
Normal file
|
@ -0,0 +1,21 @@
|
|||
\documentclass[a4paper,12pt,twocolumn]{article}
|
||||
|
||||
\input{header}
|
||||
|
||||
\title{If only people were kinder to one another}
|
||||
\author{Ambroise Croizat}
|
||||
\date{}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
|
||||
\begin{abstract}
|
||||
It is not very fun writing an abstract for a template.
|
||||
\end{abstract}
|
||||
|
||||
\input{introduction}
|
||||
|
||||
\printbibliography
|
||||
|
||||
\end{document}
|
12
shell.nix
Normal file
12
shell.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = [
|
||||
(pkgs.texlive.combine {
|
||||
inherit(pkgs.texlive)
|
||||
scheme-medium
|
||||
biber
|
||||
biblatex;
|
||||
})
|
||||
pkgs.gnumake
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue