Hi, I was using the template from http://www.texample.net/tikz/examples/a ... ed-din-a4/ to make a calendar. Whenever I try inserting text for any day in June it always pushes the calendar down and left. Just trying to figure out what is happening with the formatting. There is no issue with December on the 2nd page which is why this is weird. Something to do with maximum text width being violated I suppose...
Thanks,
Neven
Calendars and Miscellaneous ⇒ Yearly Calendar Formatting
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
Yearly Calendar Formatting
Hi Neven,
welcome to the forum!
For example, you could define
and later in the drawing you use it like
Stefan
welcome to the forum!
How are you doing this? I guess you don't insert text into the drawing but outside. You can place text by placing a node, similar to thenvulic wrote:Whenever I try inserting text for any day in June it always pushes the calendar down and left.
\termin
command there.For example, you could define
Code: Select all
\newcommand*{\mydate}[2]{
\node [anchor=north west, text width= 3.4cm] at
($(cal-#1.north west)+(3em, -0.2ex)$) {#2};
}
Code: Select all
\mydate{\year-06-05}{Today is the day}
LaTeX.org admin