资源简介

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

评论

共有 条评论