blob: 666277aa88f73af1b8f4bc0cdb7191336372528c (
plain)
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
26
27
28
29
|
% arara: indent: {trace: on}
\documentclass[10pt,twoside]{report}
\newenvironment{widepage}{\begin{adjustwidth}{-\offsetpage}{}%
\addtolength{\textwidth}{\offsetpage}}%
{\end{adjustwidth}}
% Define fix command
% - it puts a comment in the margin
% - it writes to a file with a list of things that need fixing
\newcommand{\fixthis}[1]
{%
\marginpar{\huge \color{red} \framebox{FIX}}%
\typeout{FIXTHIS: p\thepage : #1^^J}%
}
% Define pccname command
% - it writes to the log file with a detail of the name-
% this is useful for tracking names for diversity purposes
\newcommand{\pccname}[1]
{%
#1%
\typeout{PCCNAME: p\thepage : #1}%
}
\begin{document}
some text
\end{document}
|