Tagged Questions
8
votes
1answer
136 views
Replacing Leading Minus Signs in Environment
In this question concerning negative signs and the alignment of entries in matrix environments, Heiko Oberdiek gave a great answer in which he uses a user-defined command called \matminus instead of ...
5
votes
3answers
126 views
String parsing macro fails within custom cite command of biblatex?
I am trying to use the same string parsing macro as in String parsing macro fails within a minipage environment?; but this time in context of biblatex - and I'm having similar problems, I guess.
...
4
votes
1answer
232 views
String parsing macro fails within a minipage environment? [closed]
I am trying to work with a string parsing macro, found in the answer of TeX capacity exceeded while parsing a date string - TeX - LaTeX.
Basically, I have strings num01, num02... num09 - from these, ...
5
votes
3answers
455 views
How to extract parts of (La)TeX document?
I want to run queries against LaTeX documents like these:
get list of all equations, even if one declares \def\be{\begin{equation}} and uses it;
get list of all arguments of some command (e. g. ...
2
votes
2answers
242 views
Time calculation for task reports
Consider this MWE:
\documentclass{article}
\newenvironment{dayreport}{\begin{tabular}{ll}\hline Task & Time\\\hline}{\hline\end{tabular}}
\newcommand{\task}[2]{#1 & #2\\}
\begin{document}
...