All Projects â†’ TGM-HIT â†’ latex-protocol

TGM-HIT / latex-protocol

Licence: other
LaTeX template for documents and laboratory documentation 📚

Programming Languages

TeX
3793 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to latex-protocol

GenericProtocol
⚡ïļ A fast TCP event based buffered server/client protocol for transferring data over the (inter)net in .NET 🌐
Stars: ✭ 38 (+171.43%)
Mutual labels:  protocol
smart switcher
[TERMINAL ONLY] Auto-detect proxy switcher for http, https, ftp, rsync, git protocols. It supports many tools such as wget, yum, portage, brew ...
Stars: ✭ 37 (+164.29%)
Mutual labels:  protocol
muxrpc
lightweight multiplexed rpc
Stars: ✭ 96 (+585.71%)
Mutual labels:  protocol
haal
HÃĪÃĪl - Anonymous Electronic Voting System on Public Blockchains
Stars: ✭ 96 (+585.71%)
Mutual labels:  protocol
ProtocolLib
Provides read and write access to the Minecraft protocol with Bukkit.
Stars: ✭ 625 (+4364.29%)
Mutual labels:  protocol
node-drivers
Industrial protocol drivers in node.js
Stars: ✭ 20 (+42.86%)
Mutual labels:  protocol
apdu-over-ble
Specification of a protocol to transmit APDU commands and responses over Bluetooth Low Energy
Stars: ✭ 17 (+21.43%)
Mutual labels:  protocol
DocumenterCitations.jl
DocumenterCitations.jl uses Bibliography.jl to add support for BibTeX citations and references in documentation pages generated by Documenter.jl.
Stars: ✭ 53 (+278.57%)
Mutual labels:  bibliography
proofengineering-bib
BibTeX bibliographies for proof engineering-related papers
Stars: ✭ 24 (+71.43%)
Mutual labels:  bibliography
rsync
gokrazy rsync
Stars: ✭ 308 (+2100%)
Mutual labels:  protocol
hermes-protocol
Definition of the Hermes protocol used by the Snips platform
Stars: ✭ 38 (+171.43%)
Mutual labels:  protocol
ioBroker.contactid
Contact ID server for burglar alarm system
Stars: ✭ 20 (+42.86%)
Mutual labels:  protocol
protoc-gen-grpc-ts
Protocol compiler plugin for generating grpc interfaces in TypeScript.
Stars: ✭ 33 (+135.71%)
Mutual labels:  protocol
amongus-protocol
An implementation of the Among Us protocol in typescript.
Stars: ✭ 56 (+300%)
Mutual labels:  protocol
ArduinoWeatherOS
Arduino Uno, 433MhzRx and OS WMR86 Weather Station
Stars: ✭ 69 (+392.86%)
Mutual labels:  protocol
network-monorepo
Monorepo containing all the main components of Streamr Network.
Stars: ✭ 223 (+1492.86%)
Mutual labels:  protocol
HeishaMon
Panasonic Aquarea air-water H and J series protocol decrypt
Stars: ✭ 102 (+628.57%)
Mutual labels:  protocol
qnotero
Standalone sidekick to the Zotero reference manager
Stars: ✭ 38 (+171.43%)
Mutual labels:  bibliography
tcp-multiplexer
A TCP service multiplexer in Python
Stars: ✭ 32 (+128.57%)
Mutual labels:  protocol
LaTeX-Templates
Document templates composed using LaTeX for my college assignments and projects (Applicable for any other university or college) âœĻ
Stars: ✭ 18 (+28.57%)
Mutual labels:  bibliography

A latex protocol template

Quickstart

git clone [email protected]:tgm-hit/latex-protocol.git protocol
cd protocol
./maketex

Contents

Dependencies

For local compilation a TeX distribution is required. Both TeX Live and MiKTeX are fully supported. The compilation script requires Python 3.

Some features might depend on packages which are not installed by default! A growing list of optional dependencies can be found here.

Arch Linux

sudo pacman -S texlive-most python-pygments

Usage

With Python 3 and LaTeX installed you can easily compile your project using the maketex script which simplifies the compilation progress, handles multiple source files and removes unnecessary files. For most use-cases you only have to run ./maketex which compiles the main.tex file using pdflatex while looking for bibliography and glossary entries.

Latex

If (for some reason) you do not want to depend on the maketex script you can also use pdflatex, makeglossaries and bibtex from the shell.

pdflatex -shell-escape main	# Initial compilation
makeglossaries main 		# Compile glossaries
pdflatex -shell-escape main	# Progressive compilation for glossaries
bibtex main 			# Compile bibliography
pdflatex -shell-escape main	# Progressive compilation for bibtex
pdflatex -shell-escape main	# Progressive compilation for bibtex

TexStudio

In TexStudio a custom command can be added under Options → Configure TexStudio → Build → User Commands. The following line completely compiles a LaTeX file with glossaries, bibliography and minted.

pdflatex -shell-escape -interaction=nonstopmode % | txs:///makeglossaries | pdflatex -shell-escape -interaction=nonstopmode % | txs:///bibtex | pdflatex -shell-escape -interaction=nonstopmode % | pdflatex -shell-escape -interaction=nonstopmode % | txs:///view-pdf-internal --embedded

Of course you can also add the maketex script as a user command but you might want to set -lm so TexStudio can find your log files and minted cache after cleanup.

python maketex -lm | txs:///view-pdf-internal --embedded

Overleaf

Overleaf is a popular online latex editor and is also fully supported by this template. Just download the archived repository or latest release and upload as a new project.

Overleaf usage

Options

Options are added to the \documentclass command usually found in main.tex.

\documentclass[<option1>,<option2>,...]{protocol}
Option Result
en Set main document language to english
landscape Change the page format to landscape orientation
minted Add and configure minted package
natbib Change bibtex backend to natbib
nobib No bibliography
nofonts No additional fonts
noglo No acronyms and glossary
nologos No logos on titlepage
notable No table on titlepage
notitle No titlepage
notoc No table of contents
parskip Skip a line instead of indenting after blank line
sans Load sans-serif fonts

Variables

Variables are set as commands with their parameter being the variable value.

\myvariable{value}
Command Content
mysubtitle Subtitle of group
mysubject Thematic group / subject
mycourse Current course / class
myteacher Current teacher
myversion Current version of the document
mybegin Start of documentation
myfinish End of documentation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].