mirror of
https://github.com/ElegantLaTeX/ElegantPaper.git
synced 2026-03-28 02:04:37 +08:00
103 lines
3.1 KiB
Lua
103 lines
3.1 KiB
Lua
--[==========================================[--
|
|
L3BUILD FILE FOR ELEGANTPAPER
|
|
Check PDF File & Directory After Build
|
|
--]==========================================]--
|
|
|
|
--[==========================================[--
|
|
Basic Information
|
|
Do Check Before Upload
|
|
--]==========================================]--
|
|
module = "elegantpaper"
|
|
version = "0.12"
|
|
maintainer = "Ran Wang"
|
|
uploader = maintainer
|
|
maintainid = "ElegantLaTeX"
|
|
email = "ranwang.osbert@outlook.com"
|
|
repository = "https://github.com/" .. maintainid .. "/" .. module
|
|
announcement = ""
|
|
note = ""
|
|
summary = "An Elegant LaTeX Template for Working Papers"
|
|
description = [[
|
|
ElegantPaper is designed for writing working papers, especially for economics
|
|
students. This template is based on the standard LaTeX article class. The goal
|
|
of this template is to make the writing process easier and more comfortable.
|
|
]]
|
|
|
|
--[==========================================[--
|
|
Build, Pack and Upload To CTAN
|
|
Do not Modify Unless Necessary
|
|
--]==========================================]--
|
|
ctanzip = module
|
|
excludefiles = {"*~"}
|
|
textfiles = {"*.md", "LICENSE", "*.lua", "*.cls", "*.bib"}
|
|
typesetfiles = {module .. "-cn.tex", module .. "-en.tex"}
|
|
typesetsuppfiles = {"*.cls", "*.bib"}
|
|
imagesuppdir = "image"
|
|
|
|
uploadconfig = {
|
|
pkg = module,
|
|
version = version,
|
|
author = maintainer,
|
|
uploader = uploader,
|
|
email = email,
|
|
summary = summary,
|
|
description = description,
|
|
announcement = announcement,
|
|
note = note,
|
|
license = "lppl1.3c",
|
|
ctanPath = "/macros/latex/contrib/" .. module .. "/",
|
|
home = repository,
|
|
support = repository .. "/issues",
|
|
bugtracker = repository .. "/issues",
|
|
repository = repository,
|
|
development = "https://github.com/" .. maintainid,
|
|
update = true
|
|
}
|
|
|
|
-- cn uses XeLaTeX, en uses pdfLaTeX
|
|
function typeset(file, dir, exe)
|
|
dir = dir or typesetdir
|
|
local cmd
|
|
if string.match(file, "%-cn%.tex$") then
|
|
cmd = "latexmk -pdfxe -interaction=nonstopmode "
|
|
else
|
|
cmd = "latexmk -pdf -interaction=nonstopmode "
|
|
end
|
|
return run(dir, cmd .. file)
|
|
end
|
|
|
|
-- Copy required files into the typeset build dir
|
|
function docinit_hook()
|
|
-- Copy .cls, .bib support files
|
|
for _, glob in pairs(typesetsuppfiles) do
|
|
cp(glob, currentdir, typesetdir)
|
|
end
|
|
-- Copy image subdirectory
|
|
local dest = typesetdir .. "/" .. imagesuppdir
|
|
mkdir(dest)
|
|
cp("*", imagesuppdir, dest)
|
|
-- Copy tex source files
|
|
for _, texfile in pairs(typesetfiles) do
|
|
cp(texfile, currentdir, typesetdir)
|
|
end
|
|
return 0
|
|
end
|
|
|
|
-- Pack CTAN directory
|
|
function copyctan()
|
|
local pkgdir = ctandir .. "/" .. ctanpkg
|
|
mkdir(pkgdir)
|
|
for _, glob in pairs(typesetsuppfiles) do
|
|
cp(glob, currentdir, pkgdir)
|
|
end
|
|
for _, texfile in pairs(typesetfiles) do
|
|
cp(texfile, currentdir, pkgdir)
|
|
end
|
|
for _, glob in pairs(pdffiles or {"*.pdf"}) do
|
|
cp(glob, typesetdir, pkgdir)
|
|
end
|
|
local dest = pkgdir .. "/" .. imagesuppdir
|
|
mkdir(dest)
|
|
cp("*", imagesuppdir, dest)
|
|
end
|