资源简介
ACM会议模板的Latex。Unofficial Template for New Format of ACM Conference Proceedings (LaTeX)
This is an unofficial template that can be used to create proceedings for ACM conferences in LaTeX format.
代码片段和文件信息
#!/usr/bin/env python3
# Copyright (c) 2013 2014 Austin Clements
# Permission is hereby granted free of charge to any person obtaining a copy
# of this software and associated documentation files (the “Software“) to deal
# in the Software without restriction including without limitation the rights
# to use copy modify merge publish distribute sublicense and/or sell
# copies of the Software and to permit persons to whom the Software is
# furnished to do so subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 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 OR COPYRIGHT HOLDERS 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.
import sys
import os
import errno
import argparse
import shlex
import json
import subprocess
import re
import collections
import hashlib
import shutil
import curses
import filecmp
import io
import traceback
import time
try:
import fcntl
except ImportError:
# Non-UNIX platform
fcntl = None
def debug(string *args):
if debug.enabled:
print(string.format(*args) file=sys.stderr)
debug.enabled = False
def debug_exc():
if debug.enabled:
traceback.print_exc()
def main():
# Parse command-line
arg_parser = argparse.ArgumentParser(
description=‘‘‘A 21st century LaTeX wrapper
%(prog)s runs latex (and bibtex) the right number of times so you
don‘t have to
strips the log spew to make errors visible
and plays well with standard build tools.‘‘‘)
arg_parser.add_argument(
‘-o‘ metavar=‘FILE‘ dest=‘output‘ default=None
help=‘Output file name (default: derived from input file)‘)
arg_parser.add_argument(
‘--latex-cmd‘ metavar=‘CMD‘ default=‘pdflatex‘
help=‘Latex command (default: %(default)s)‘)
arg_parser.add_argument(
‘--latex-args‘ metavar=‘ARGS‘ type=arg_parser_shlex
help=‘Additional command-line arguments for latex.‘
‘ This will be parsed and split using POSIX shell rules.‘)
arg_parser.add_argument(
‘--bibtex-cmd‘ metavar=‘CMD‘ default=‘bibtex‘
help=‘Bibtex command (default: %(default)s)‘)
arg_parser.add_argument(
‘--bibtex-args‘ metavar=‘ARGS‘ type=arg_parser_shlex
help=‘Additional command-line arguments for bibtex‘)
arg_parser.add_argument(
‘--max-iterations‘ metavar=‘N‘ type=int default=10
help=‘Max number of times to run latex before giving up‘
‘ (default: %(default)s)‘)
arg_parser.add_argument(
‘-W‘ m
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-08-06 01:10 acmart-sigproc-template-master\
目录 0 2018-08-06 01:10 acmart-sigproc-template-master\.build\
文件 989 2018-08-06 01:10 acmart-sigproc-template-master\.build\docx-to-pdf.scr
文件 1082 2018-08-06 01:10 acmart-sigproc-template-master\.build\graffle2pdf.scr
文件 76337 2018-08-06 01:10 acmart-sigproc-template-master\.build\latexrun.py
文件 925 2018-08-06 01:10 acmart-sigproc-template-master\.build\pptx-to-pdf.scr
文件 157 2018-08-06 01:10 acmart-sigproc-template-master\.gitignore
文件 875 2018-08-06 01:10 acmart-sigproc-template-master\Makefile
文件 726 2018-08-06 01:10 acmart-sigproc-template-master\README.md
文件 83571 2018-08-06 01:10 acmart-sigproc-template-master\acm.bst
文件 88549 2018-08-06 01:10 acmart-sigproc-template-master\acmart.cls
目录 0 2018-08-06 01:10 acmart-sigproc-template-master\figures\
文件 711 2018-08-06 01:10 acmart-sigproc-template-master\figures\Makefile
文件 1778 2018-08-06 01:10 acmart-sigproc-template-master\figures\sample-figure.graffle
文件 16803 2018-08-06 01:10 acmart-sigproc-template-master\figures\sample-figure.pdf
文件 5721 2018-08-06 01:10 acmart-sigproc-template-master\sample-sigconf.tex
文件 134 2018-08-06 01:10 acmart-sigproc-template-master\sigproc.bib
- 上一篇:txt
- 下一篇:latex Algorithms伪代码规范
相关资源
- 杭电acm答案无敌版.doc
- 北京邮电大学acm集训队stl
- PaperVision3D
- 无向连通图最小生成树
- UCB伯克利经典人工智能project-Pacman吃豆
- hmac.dll (HMACSHA1、HMACSHA256、HMACMD5)
- NOIP 精品模拟题
- NOIP 2018 提高组精品模拟题
- NOIP 2018 提高组模拟QBXT版
- Paper Minecraft 2D版我的世界Scratch源码
- FlexPaper_1.4.7_flash.zip
- xgboost-eXtreme Gradient Boosting.pdf
- Linux的USB虚拟串口驱动CDC-ACM驱动源码
- 浪潮ERP-Paper Mill造纸行业解决方案
- 浙江大学ACM题解/ZJU 题型分类
- 2017年数学建模国赛优秀论文集pdf版
- USACO历年比赛测试数据:2006年
- ACM HDU 2000-gt;2099 解题报告
- papervision3d相机旋转(papervision3d came
- ACM培训
- FlexPaper_1.5.1_flash.zip
- ACM编程比赛入门题目
- PACMAN代码
- POJ1724-ROADS 测试数据
- ACM杭电一百题及答案
- ITIL-4-Foundation-Sample-Paper-English.zip
- 浙大ACM题解
- 中文核心期刊论文模板(含基本格式
- ACM程序设计竞赛介绍ppt
- HDUACM201403版_03贪心算法
评论
共有 条评论