资源简介
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伪代码规范
相关资源
- zoj 分类加题解(浙大ACM)
- 浙大ACM编程竞赛的摸板
- PKU acm 1000题-2000题
- 使用SPCE061A的ACM12864J液晶显示模块应用
- 天大acm题库 1011题
- ACM算法竞赛常用代码
- 程序设计实践(ACM)
- 算法竞赛入门经典 第2版刘汝佳+高清
- ACM图灵奖演讲集:前20年
- ACM论文信息学奥赛中国国家队
- ACM培训——算法入门-----------
- 凝固浴组成对PVDF-g-PACMO共聚物膜结构
- 蓝桥杯2012~2018 省赛 国赛 A B C 组
- flex4.0实现翻书效果,并动态 使用Fl
- 图论算法理论、实现及应用.pdf
- 2018年ACM国际大学生程序设计竞赛真题
- ACM大学生程序设计竞赛在线题库精选
- Neo4j-ai-graph-technology-white-paper-EN-A4-CN
- ACM教程多个word+pdf分类
- OJ离线版 ACM离线本地测评/判定系统
- 贝尔链白皮书1.2_PC-中文
- kuangbin邝斌的ACM模板
- Libra_WhitePaperV2_April2020.pdf
- 标准二维表
- ACM大赛题目汇总,经典的算法和数据
- Papervision3D236223
- ACM经典模板整理十四个经典模版
- 杭电ACM离线题库1000-4955
- 2016校赛标程和数据
- HDU-ACM课件.rar
评论
共有 条评论