Today, a colleague of mine came up with this problem Between the two groupplots, there is a additional label [K] which he liked to get rid of. The relevant source part was \begin{groupplot}[ y unit=K ] \nextgroupplot \addplot coordinates { % snip }; \nextgroupplot \addplot coordinates { % snip }; […]
scientific writing
In order to dive into the world of povray, I chose the above experimental setup which is actually used for measuring the Raman shift. Google quickly came up with a reference source. However, the source is neither documented, nor explained. Hence, I’m trying to give a short introduction for newbies […]
Although pgfplots supports discontinuities, the method described in the manual is only applicable for the zero crossing and is unable to handle data on both sides of the singularity. As I needed this functionality, I came up with this small hack. The code is rather ugly, the result is not. […]
For my bachelor’s thesis, I spend some time convincing LaTeX to create tables in a fashion I like. One part of this adventure was changing the color of the horizontal rulers and shading both headers as well as selected rows. The screenshot gives an example how this looks like. Do […]
Creating an image like this was my goal – but I didn’t take into account my “you-work-on-sunday-bad-luck”. To keep things simple: don’t try to use the spy module for documents you have to compile with latex. Use pdflatex instead. Otherwise you might get this For the sake of completeness, here’s […]
When preparing presentations with sozi, you define all frames, viewports and transitions with respect to one defined aspect ratio. Unfortunately, sometimes the aspect ratio of the screens or beamers actually used for the presentation is unknown at this stage. Moreover, if you’re supposed to repeat your talk, you might not […]
Currently, I’m interested in fitting data on some rather strange functions. Sometimes, I don’t even know the exact function, so I expected the solution to be easier in case I come up with a complicated function and sufficient free parameters and let the computer do the fitting. The sample data […]
When creating presentations with sozi, the built-in table of contents feature surely helps navigating. However, some frames are only added due to aesthetic reasons and do not serve as a sensible entry point during the discussion after the talk whatsoever. As I just opened the issue, there is only a […]
Scholarley ist eine Anwendung, um von einem android-basierten Smartphone oder Tablet auf Mendeley zuzugreifen. Beim Einrichten ist bei mir ein Fehler aufgetreten: jeder Eintrag in der Liste trägt die Überschrift “missing citation key”. Das könnte daran liegen, dass ich dem Hinweis gefolgt bin, dass durch Antippen des Scholarley-Logos der Synchronisierungsprozess […]
Vor einigen Wochen habe ich ein wenig erquicklickes Gespräch führen dürfen, bei dem Kommilitonen der Meinung waren, dass LaTeX generell ein suboptimales Layout liefern würde, weil v.a. Fließobjekte niemals dort stünden, wo der Benutzer sie haben wolle. Dazu kann man stehen wie man will – in wenigen Fällen kann es […]
Wenn man in den Optionen des LaTeX-Editors kile einstellt, dass der PDF-Reader (ja, eines von vielen Formaten) okular mit dem Kommandozeilenparameter –unique aufgerufen wird, damit nicht jedes Kompilieren des Dokuments für ein neues Fenster sorgt, kann das Problem auftreten, dass okular die Seite vergisst, die man geöffnet hatte. Gerade bei […]
Manchmal ergibt sich die Notwendigkeit, in einer description-Umgebung eckige Klammern zu verwenden. [tex]\begin{description} \item[foo [\ldots]] snafu \end{description}[/tex] Das funktioniert, ergibt aber nicht das gewünschte Ergebnis, weil LaTeX die erste eckige Klammer als Ende des Parameters interpretiert. Nächster Versuch: man markiert den Abschnitt als mathematischen Einschub: [tex]\begin{description} \item[foo $[$\ldots$]$] snafu \end{description}[/tex] […]