summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/hepthesis/TODO
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-06-04 14:50:32 +0000
committerKarl Berry <karl@freefriends.org>2010-06-04 14:50:32 +0000
commit70c5604c155226ecad5f0c797cc59c9ce50e1e49 (patch)
treebfff574998380f5097007d19c6c64a3c7d20267f /Master/texmf-dist/doc/latex/hepthesis/TODO
parent68ae4f7bfb0b890c21bd8c5d10752b008f641cd0 (diff)
hepthesis 1.4.3 (3jun10)
git-svn-id: svn://tug.org/texlive/trunk@18725 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/hepthesis/TODO')
-rw-r--r--Master/texmf-dist/doc/latex/hepthesis/TODO24
1 files changed, 24 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/hepthesis/TODO b/Master/texmf-dist/doc/latex/hepthesis/TODO
index cfa0e8c8f28..66cf31a81a7 100644
--- a/Master/texmf-dist/doc/latex/hepthesis/TODO
+++ b/Master/texmf-dist/doc/latex/hepthesis/TODO
@@ -46,3 +46,27 @@ From Manuel Bahr:
}{%
\usepackage{cite}
}
+
+
+From giuseppe.passino@elec.qmul.ac.uk:
+
+I'm actually using kile on linux, and I'm keen on the error window facility of clicking on an error and being redirected to the error line, as well as the backward referencing facility by which you can insert source information in the dvi file and be redirected to the correspondent line in the tex file when clicking in the dvi.
+
+Unfortunately, all this cool stuff with hepthesis does not work, since the comment.sty style is used, that wraps the source into a temporary comment.cut file that spoils everything. This is because you define mainmatter etc. as specialcomment. I changed them into \renewcommand, and this problem disappeared. I was anyway curious to know why you went for the comment style instead of a simpler \renewcommand. Hence this email. Additionally, maybe the problem I described above is a reason good enough for you to change the definition of mainmatter end friends..
+
+Just to give you an example, this is the new mainmatter:
+
+\let\@oldmainmatter\mainmatter
+\def\BeginMainMatter{%
+ %\@oldmainmatter%
+ \@mainmattertrue
+ \pagenumbering{arabic}%
+ \adjustwidth[]{\@mainmatterextramargin}{\@mainmatterextramargin}%
+ \begin{\@mainmatterspacing}%
+}
+\def\EndMainMatter{%
+ \end{\@mainmatterspacing}%
+ \endadjustwidth%
+ \ignorespacesafterend%
+}
+\renewenvironment{mainmatter}{\BeginMainMatter}{\EndMainMatter}