blob: eac3910e6fc1d73dc9dd7e16cfc4d2d60b71378d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
param(
[switch] $CTAN
)
#region Bootstrap PoShTeX
if (!(Get-Module -ListAvailable -Name posh-tex -ErrorAction SilentlyContinue)) {
Install-Module posh-tex -Scope CurrentUser
}
Import-Module posh-tex
#endregion
Out-TeXStyle revquantum
Out-TeXStyleDocumentation revquantum
Install-TeXUserResource tex/latex/revquantum revquantum.sty, revquantum.pdf
Install-PandocUserResource templates pandoc/templates/revquantum.latex -ErrorAction Continue
if ($CTAN) {
Invoke-TeXBuildEngine example.tex
Export-CTANArchive -ArchiveLayout Simple revquantum.ins, revquantum.pdf, README.md, example.tex, example.pdf, Install.ps1
}
|