Texmaker 2.2 released
The version 2.2 of the free LaTeX editor Texmaker has been released today. There are many improvements regarding installation, PDF viewing, printing support, syntax highlighting, code completion and shortcut handling.
For more information have a look at the complete changelog. Click here for downloading versions for Linux, Mac OS X or Windows or source files.
This text is available in German. Dieser Text ist auch in Deutsch verfügbar.
KOMA-Script 3.08 erschienen
Auf golatex.de teilte Markus Kohm mit, dass er KOMA-Script 3.08 veröffentlicht hat. Diese Version bringt einige neue Features, siehe 3.08 Release-Seite. Die neue Version kann von BerliOS heruntergeladen werden.
KOMA-Script 3.08 released
Markus Kohm announced on golatex.de that he just released KOMA-Script 3.08. Version 3.08 brings some new features, see 3.08 release notes (or notes on komascript.de in German). You can download the new version on BerliOS.
Kile 2.1 beta 5 erschienen
Die fünfte Beta-Version der integrierten LaTeX-Entwicklungsumgebung Kile wurde gestern veröffentlicht. Wie bei Beta-Versionen üblich, ist sie für Testzwecke gedacht, jedoch nicht für den produktiven Einsatz empfohlen.
Mit ihr kommen viele Fehlerbehebungen zur vorigen Beta-Version sowie einige neue Features. Nach dem Download der Archiv-Datei kile-2.1b5.tar.bz2 kann man diese Änderungen in der enthaltenen ChangeLog-Datei nachlesen.
Die aktuellste stabile Version für KDE3 ist immer noch 2.0.3.
Für mehr Informationen und Download siehe:
- die Kile Homepage,
- die Kile News
- den Download-Bereich.
This text is available in English. Dieser Text ist auch in Englisch verfügbar.
Kile 2.1 beta 5 released
The fifth beta version of the LaTeX editor Kile has been released yesterday. As it’s still in beta status it’s intended for testing but not recommended for production.
Again, there are many fixes to the previous beta version plus some new features. You can read about it in the ChangeLog file after you downloaded the archive kile-2.1b5.tar.bz2.
The latest available stable version for KDE3 is 2.0.3.
For more information and download visit:
- the Kile Homepage,
- the latest news
- the download area.
This text is available in German. Dieser Text ist auch in Deutsch verfügbar.
Circled numbers in text
Martin Tapankov asked on TeX.SX:
What is a good way to make circled numbers in text?
I’m trying to make some good-looking numbers in a circle, using the simple command:
\textcircled{1} |
However, the circle is misaligned vertically with the number, and look a bit sloppy:
Any suggestions how can I adjust the vertical alignment so that the numbers look more centered w.r.t to the circles? Or, if that’s not an option, what other ways to achieve the same results are possible?
I will use those only for numbers, and in very few places, so manual adjustment per glyph is an option.
I’m using pdfLaTeX with Computer Modern, if that matters.
Answer:
Here’s a TikZ solution:
\documentclass{article} \usepackage{tikz} \newcommand*\circled[1]{\tikz[baseline=(char.base)]{ \node[shape=circle,draw,inner sep=2pt] (char) {#1};}} \begin{document} Numbers aligned with the text: \circled{1} \circled{2} \circled{3} end. \end{document} |
It’s just a node. TikZ options are used to align the base line, to adjust the size and to get the circle shape. You’re free to choose further options regarding size or circle thickness (option thick). There’s more: for example you could even name the nodes by another argument to connect them by arrows later.
If one like to use it for an enumerated list, for example, it’s easy but has to be protected:
\usepackage{enumitem} ... \begin{enumerate}[label=\protect\circled{\arabic*}] \item First item \item Second item \item Third item \item Fourth item \end{enumerate} |
Harpoons in TikZ
Yasser Sobhdel asked on TeX.SX:
Can I have any harpoons in TikZ?
I refer to my previous question on harpoons: “How to draw protocol interaction” using amsmath. The closest thing I have found is this code:
\begin{tikzpicture}[decoration={bent,aspect=.3}] \node[circle,draw] (A) at (.5,.5) {A}; \node[circle,draw] (B) at (3,1.5) {B}; \draw[->,decorate] (A) -- (B); \draw[->,decorate] (B) -- (A); \end{tikzpicture} |
Answer:
There are so called partial arrow tips in TikZ. Use for instance left to, right to, left hook or right hook. They are described in section 23.7 of the pfg 2.10 manual (22.6 in the pgf 2.0 manual).
Inserting this into your example:
\documentclass{article} \usepackage{tikz} \usetikzlibrary{arrows} \begin{document} \begin{tikzpicture} \node[circle,draw] (A) at (.5,.5) {A}; \node[circle,draw] (B) at (3,1.5) {B}; \draw[-left to] (A.north east) -- (B.west); \draw[-left to] (B) -- (A); \end{tikzpicture} \end{document} |
LyX 2.0.0 beta 2 erschienen
Die zweite Beta-Version von LyX 2.0.0 ist veröffentlicht worden. Beta-Tester können nun die weiterentwickelte Version ausprobieren.
Die aktuelle stabile Version, die für normales Arbeiten empfohlen wird, bleibt 1.6.
Für eine Liste neuer Features siehe einen früheren Blog-Beitrag oder
- die Liste der neuen Features und Änderungen,
- die LyX Homepage,
- die Ankündigung der zweiten Beta auf der Mailing-Liste,
- die zweite Beta auf dem FTP Server.
This text is available in English. Dieser Text ist auch in Englisch verfügbar.
LyX 2.0.0 beta 2 released
The second beta version of LyX 2.0.0 has been released. Testers of the first beta are encouraged to test the new version.
The current stable release for any serious work remains 1.6.
For a list of new features have a look at a previous blog post or visit
- the List of new features and changes,
- the LyX Homepage,
- the announcement of the 2nd beta on the mailing list,
- the 2nd beta on the FTP server.
This text is available in German. Dieser Text ist auch in Deutsch verfügbar.
Scaling and fitting a box
Peter Smit asked on TeX.SX:
Why does fit not scale?
I have a problem with the fit library in TikZ.
When I scale the figure (with the TikZ scale command), the fit box doesn’t!
Why is that? Could I somehow change it?
Example:
\documentclass{article} \usepackage{tikz} \usetikzlibrary{fit} \begin{document} \begin{tikzpicture}[state/.style={circle,draw,thick, loop above,inner sep=0,minimum width=10}] \node[state] (a) at (0,1) {} edge [loop above, thick] coordinate (al) (); \node[state] (b) at (1,1) {} edge [loop above, thick] coordinate (bl) (); \node[draw,rectangle,fit=(a) (b) (al) (bl)] {}; \end{tikzpicture} \begin{tikzpicture}[scale=2,state/.style={circle,draw,thick, loop above,inner sep=0,minimum width=10}] \node[state] (a) at (0,1) {} edge [loop above, thick] coordinate (al) (); \node[state] (b) at (1,1) {} edge [loop above, thick] coordinate (bl) (); \node[draw,rectangle,fit=(a) (b) (al) (bl)] {}; \end{tikzpicture} \end{document} |
Answer:
Add the option transform shape to scale also the box resp. shapes:
\begin{tikzpicture}[scale=2,transform shape, state/.style={circle,draw,thick,loop above,inner sep=0, minimum width=10}] |
Output:
{TeX} Webseite eröffnet
Die neue Q&A Webseite {TeX} aka “TeX, LaTeX and friends” alias tex.stackexchange.com hat heute die Beta-Phase beendet. Seit heute erscheint die Seite in einem beeindruckenden neuen Design und sie ist nun offiziell eröffnet.
Während der 3 Monate Beta-Phase haben sich 1775 Nutzer registriert und 1492 Fragen gestellt, von denen 99% beantwortet wurden. Solche Statistik kann beim site proposal nachgelesen werden. Zum neuen Design kann man die Ankündigung und die Diskussion auf der Meta-Seite nachlesen.
This text is available in English. Dieser Text ist auch in Englisch verfügbar.
Erste Beta-Version von LyX 2.0 erschienen
Die erste Beta-Version von LyX 2.0.0 wurde heute veröffentlicht. Es gibt viele neue Features:
- ein neues Debugging-Fenster zur Anzeige von Übersetzung-Fortschritt, Debugging-Nachrichten und Ausgabe externer Programme,
- eine Sofort-Vorschau basierend auf dem preview-Paket,
- on-the-fly Rechtschreibprüfung,
- multilingualer Thesaurus,
- verbesserte Suchfunktion mit Format-Angaben,
- Vorwärtssuche – direkt aus einer LyX-Zeile in die DVI/PDF-Ausgabe springen,
- Dokumentvergleich,
- Kontext-Menus im Outliner,
- XHTML-Ausgabe,
- Multi-Index Unterstützung,
- XeTeX Unterstützung
- Besere Ausgabe-Kontrolle,
- Native includeonly-Unterstützung zum Übersetzen von Teildokumenten,
- Unterstützung von mehr LaTeX-Befehlen und Paketen (phantom-Befehle, makebox, nameref, ulem, lettrine, …)
- Unterstützung des refstyle-Pakets anstelle von prettyref,
- Unterstützung für weitere Sprachen (Schweizerisch, Turkmenisch) und Kodierungen (applemac),
- Verbessertes branches-Feature,
- Bessere Tabellen-Behandlung,
- Einige neue Größen-Features (Papier, Zwischenräume),
- Bessere Farben-Einstellungen,
- Unterstützung von geforderten (neben optionalen) Argumenten,
- Neue Subversion-Features,
- Unterstützung von Lilypond Musik-Notation
und viele mehr.
Für mehr Informationen und Download siehe:
- die Liste der Änderungen,
- die LyX Homepage,
- die Ankündigung auf der Mailing-Liste,
- den Download-Bereich.
This text is available in English. Dieser Text ist auch in Englisch verfügbar.