2020-11-28 Latex相关小工具

  1. 手写reference自动排序工具:LaTeXBibitemStyler
  2. tex文件的自动缩进工具:latexindent,CSDN下载链接使用说明
  3. tex文件label的辅助显示工具:showkeys

README 1

LaTeX Bibitem Styler
This program allows you to automatically sort \bibitems by citation order or alphabetically.

Description
There’s a major problem in LaTeX bibliography styling/sorting when not using BibTeX.
When using BibTeX, one can specify a \bibliographystyle, but if we’re generating our bibliography from plain \bibitem entries, using the \thebibliography command, there’s no way of specifying the output style.
Given a main .tex file and a bibliography .tex file (containing only bibitems), the LaTeX-BibitemStyler will go through all the input .tex files of your project, collect the cites in order of appearance, and allow you to generate a new bibliography .tex file while specifying one of the following output styles.

PLAIN.

ALPHA. Alphabetical order

UNSRT. Cite order of appearance

This project currently has two flavors:

Microsoft .NET application
Python

If you found this useful, please drop us a line! Reviews and suggestions are very welcome!

Usage: .NET application
It’s very easy to use, just fill in the textboxes…

Main Tex File
The main file of your LaTeX project. I.e.: thesis.tex. See example below:
\documentclass[letterpaper,oneside,british,english,11pt]{book}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\makeatletter
\providecommand{\tabularnewline}{\}
\floatstyle{ruled}
\newfloat{algorithm}{tbp}{loa}
\floatname{algorithm}{Algorithm}
\makeatother
\begin{document}
\include{titlePage}
\pagenumbering{roman}
\pagestyle{plain}
\input{abstract.tex}
\input{acknowledgements.tex}
\tableofcontents{}
\listoffigures
\pagenumbering{arabic}
\pagestyle{fancyplain}
\newpage
\input{intro.tex}
\input{chapter1.tex}
\input{chapter2.tex}
\input{chapter3.tex}
\normalsize
\nocite{*}
% ***** This is what you would usually do to include a bibliography *****
%\bibliographystyle{unsrt}
%\bibliography{biblio.bib}
% ***** But instead you must use a .tex file *****
\input{biblio.tex}
\addcontentsline{toc}{chapter}{\numberline{}\sf\bfseries{Bibliography}}
\end{document}

Biblio Filename
The LaTeX file where you’ve written your bibliography in a plain style (not a .bib file, it must be a .tex file!). I.e.: biblio.tex. See example below:
\begin{thebibliography}{100}
\bibitem{army0} BEN KAGE. \emph{Roomba maker iRobot also developing military robots for Pentagon}.
[web page], 14 December 2006. NaturalNews. [Visited: 23 January 2009].
URL: \url{http://www.naturalnews.com/021301.html}.

\bibitem{army2} WADE ROUSH. \emph{iRobot Wins \$3.75M Army Contract to Develop Warrior Robot | Xconomy}. 
[web page], 2 October 2008. Xconomy Boston. [Visited: 23 January 2009]. 
URL: \url{http://www.xconomy.com/boston/2008/10/02/irobot-wins-375m-army-contractto-develop-warrior-robot/}.

\bibitem{anylogic} XJ TECHNOLOGIES. \emph{AnyLogic - Xjtek}. 
[web page], 29 December 2008. XJ Technologies Company. [Visited: 18 December 2008]. 
URL: \url{http://www.xjtek.com/anylogic/}.

\bibitem{simulink} THE MATHWORKS. \emph{Simulink - Simulation and Model-Based Design}. 
[web page], January  2009. The Mathworks, Inc. [Visited: 18 December 2008]. 
URL: \url{http://www.mathworks.com/products/simulink/}.

\bibitem{pywin} MARK HAMMOND. \emph{SourceForge.net: Python for Windows extensions}. 
[web page], 31 July 2008. SourceForge.net. [Visited: 14 April 2008]. 
URL: \url{http://sourceforge.net/projects/pywin32/}.        

\end{thebibliography}
%%%%% CLEAR DOUBLE PAGE!
\newpage{\pagestyle{empty}\cleardoublepage}

Output Filename
Name of the new bibliography file that will be generated.

Bibliography Style

PLAIN. Simply rewrite the file with different preamble and postamble.
APLHA. Generate bibliography file with cites in alphabetical order.
UNSRT. Generate bibliography file with cites in order of appearance (goes through all your LaTeX project’s .tex files and fetches all cite references).

Preamble
You might want to change your bibliography file’s predefined preamble.

Postamble
You might want to change your bibliography file’s predefined postamble.
Finally, just hit RUN! and let the application perform its magic, it’ll be done in a second. You’ll find the newly generated bibliography file in the original file’s path.

Usage: Python code
Run the program with command-line arguments:

The main tex file path (use double ‘’ if you’re on Windows)
The input bibliography tex file name. Mind that all your latex project’s files must be in the same directory.
The output bibliography tex file name (the name of the new bibliography file that will be generated)
The bibliography style:

0: PLAIN (Original order)
1: ALPHA (Alphanumerical order)
2: UNSRT (Cite order of appearance)

Example:
python3 LaTeX-BibitemStyler.py main_file.tex bibliography_original.tex bibliography_ordered.tex 2
Then in the main tex file add

\input{bibliography_ordered.tex}

before

\end{document}

License
Copyright 2015 Andreea Georgescu, Sílvia Mur
Licensed under GNU GPL version 2 or any later version
http://www.gnu.org/licenses/

README 2

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
latexindent.pl, version 3.21, 2023-05-01

PERL script to indent code within environments, and align delimited 
environments in .tex files.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

See http://www.gnu.org/licenses/

C. M. Hughes

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

++++++++++++++++++++++

FOR COMPLETE DETAILS, PLEASE SEE documentation/latexindent.pdf

Note: The standalone executable files (in the bin directory) are created using commands
such as the following:

  pp 
  --addfile="defaultSettings.yaml;lib/LatexIndent/defaultSettings.yaml"
  --cachedeps=scancache
  --output latexindent-linux
  latexindent.pl

  using the Par::Packer perl module.

++++++++++++++++++++++

USAGE
You’ll need

    latexindent.pl
    LatexIndent/*.pm
    defaultSettings.yaml

in the same directory. Windows users might prefer to grab latexindent.exe
  • IMPORTANT *

This script may not work for your style of formatting; I highly
recommend that when you first use the script you use the -o switch
to output to a separate file; something like

latexindent.pl myfile.tex -o myfile-output.tex

and then check myfile-output.tex carefully to make sure that
nothing has been changed (or removed) in a way that will damage
your file.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

README3

The LATEX tools bundle
Release 2022-11-01

Overview
This bundle consists of packages providing a range of basic tools for LATEX users. It is a required part of a LATEX installation.

Installation
We no longer distribute installation instructions for the various TEX implementations. All modern TEX systems include tools as-standard, and end users should in general use the release versions supplied in this way.

Release distribution is carried out only through the CTAN archives.

Reporting Bugs
If you wish to report a problem or bug in the tools bundle please use the Issue Tracker for LATEX2ε on GitHub and follow the guidelines that pop up if you press the “New issue” button.

In particular, to check that you are really seeing a bug, please write a short, self-contained document that shows the problem. This should include the latexbug package, which will warn if your test file is not suitable for one or the other reason. See the CONTRIBUTING guide for further details, or if you need to obtain the latexbug package.

If the bug turns out to be with third-party software then please contact the developer, and not us!

License
The contents of this bundle are distributed under the LATEX Project Public License, version 1.3c or later.

Copyright
Copyright is maintained on each of these packages by the author(s) of the package.

Copyright © 1993-2022 The LaTeX Project

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

DR-ZF-

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值