Great news! From now on, all issues of the TUGboat except the current one are now publicly available for download. To tell this to as much TeX users as possible, I posted this plus download links and additional information here: on TeX StackExchange.
General
General tips about TeX and friends.
TeX at iX and heise
The iX recently published a LaTeX tutorial. Quick reviews are on
- TeXwelt.de (Deutsch/German)
- TeX-talk.net (English)
At this occasion, some recent and older articles from heise and iX, in German:
- Donald E. Knuth: Der Informatik-Papst wird 80 (see comments)
- Der hexadezimale Dollar von Donald E. Knuth (see comments)
- Einführung in LaTeX
- Editoren für LaTeX
- LaTeX im Browser: Overleaf und ShareLaTeX fusionieren (comments)
- LaTeX-Editor Texmaker 5.0 (comments)
Why do I mention it? Because it’s interesting to read about TeX and LaTeX in general IT media, and comments by IT people can be quite entertaining, such as the usual rants of guys who used LaTeX fifteen or more years ago and still complain about old stuff without having seen how it developed in the meantime.
TeX Live 2017 published!
Wohoo! TeX Live 2017 has been released! Quick release info in
- Englisch: TeX Live 2017 released
- Deutsch: TeX Live 2017 erschienen
And of cause on the TeX Live homepage. Have fun!
TeX on-line documentation
On PCs, tablets and smart-phones you can easily access TeX manuals and documentation via a web site: TeXdoc.net.
What does it provide?
- Keyword search with auto-completion as you type, listing all matches
- OpenSearch for browsers with a search engine toolbar
- Documentation sorted in categories by topic
- Accessing TeX documentation even without having TeX installed
- Reading TeX documentation on any PDF capable device with a web browser, such as a smart-phone.
- Newest documentation even if your PC has an older TeX version
- Reading a package manual before installing it
- Easy-to-remember standardized link syntax http://texdoc.net/pkg/<packagename>
- Forums, such as LaTeX-Community.org and goLaTeX.de have buttons and BBCode tags for linking keywords (package names) to the corresponding documentation
Recently it got an update: read more.
Finding typefaces (fonts)
If you’re looking for a typeface which can be used with (PDF)LaTeX you my browse The LaTeX Font Catalogue and the topic ‘font’ on CTAN.
When using XeTeX or LuaTeX and the fontspec package it’s possible to use any typeface installed on your computer.
Get TeX Live 2016 now
The 2016 version of TeX Live (and MacTeX for Mac OS X users) is now available for download at tug.org/texlive (or tug.org/mactex in case of OS X). You can install TL 2016 beside older versions harmlessly and optionally delete the old version(s) afterwards to save some disk space.
Happy TeXing!
PS: Members of TUG and/or dante (and probably other TeX user groups) will receive a copy on DVD. So join the one of them 😉
Point vs. Big Point
In TeX 1pt
(TeX point) is defined as 1/72.27 inch. Many other applications like Word and Adobe InDesign etc. however use a slightly bigger point – defined as 1/72 inch – the DTP or PostScript Point. In TeX this unit is named Big Point: 1bp
.
You may download a complete list of available units from my website: Length units in TeX (1.25 MB; direct download)
Programming network switches and routers using TeX
I’m a network engineer, and a part of my job is configuring switches, routers and firewalls. I usually work with projects that have some thousands switches each: some core switches, server switches, many distribution switches, and a large amount of small access switches for users. I mainly make networks for cruise ships – just imagine a cruise ship with about 3000 passengers and 1000 crew: each cabin gets network access for IP-TV, IP telephone, air condition, programmable door lock, computer port. Not to forget let’s say 1000 WiFi access points, 300 CCTV cameras, cash machines, vending machines, office computers everywhere, even in the Spa, IP clocks, engine and nautical workstations, broadcast center and of cause redundant data centers with racks full of servers. For security reasons, there are hundreds of VLANs (virtual networks) in several (virtual) security domains.
How to configure and to manage all of this?
Let’s take a look at configurations:
Follow @tex_tips on Twitter
We now have a Twitter account @tex_tips you may like to follow to never miss a new blog post.
Use rotating.sty for wide tables/figures
You can use the rotating
package to automatically rotate wide figures or tables. It provides {sidewaystable}
/{sidewaysfigure}
as a alternatives for {table}
/{figure}
and rotates the environment content by 90°. The direction of the rotation can be set with package options clockwise
or counterclockwise
; if you set twoside
as class or package option the tables/figures are rotated by extra 180° on odd pages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
\documentclass{article} \usepackage{rotating} \usepackage{booktabs} \begin{document} \begin{sidewaystable} \centering \begin{tabular}{ l l l l l l } \toprule \textbf{No.} & \textbf{Name} & \textbf{Symbol} & \textbf{Atomic Mass (u)} & \textbf{Melting Point (K)} & \textbf{Boiling Point (K)} \\ \midrule 2 & Helium & He & 4.002602 & 0.95 & 4.216 \\ 10 & Neon & Ne & 20.1797 & 48 & 27.1 \\ 18 & Argon & Ar & 39.948 & 83.8 & 87.3 \\ 36 & Krypton & Kr & 83.8 & 116.6 & 120.85 \\ 54 & Xenon & Xe & 131.29 & 161.3 & 166.1 \\ 86 & Radon & Rn & 222.0176 & 202 & 211.4 \\ \bottomrule \end{tabular} \caption{A very wide table} \end{sidewaystable} \end{document} |
PS: Use booktabs
for a nicer styling of your tables 😉