GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
1
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
Handbook
Browse code
- Removed no-longer-necessary quadruple escaping of spaces.
master
1 parent
33256c0
commit
f9f5b94d5d6797cb96913b99b17231a6e676946c
nstanger
authored
on 7 Feb 2011
Patch
Showing
1 changed file
makefile-templates/paper_variables.make
Ignore Space
Show notes
View
makefile-templates/paper_variables.make
################################################################################ # # File: $Id$ # # Set up variables that specify the current paper. These are mostly used # as parameters to the XSLT processor when generating documents. # ################################################################################ ################################################################################ # # Set up variables for the current paper. # SUBJECT_CODE:=INFO PAPER_NUMBER:=212 PAPER_TITLE:=Database Design and Management PAPER_YEAR:=2011 PAPER_PERIOD:=Semester 1 HANDBOOK_AUTHORS:=Chris Edwards and Nigel Stanger ################################################################################ # # Define the root directory for this paper. ALL_PAPERS_ROOT is an # environment variable that contains the path to the top level directory # for all papers (e.g., /path/to/Teaching/2005). # PAPER_ROOT:=$(ALL_PAPERS_ROOT)/$(SUBJECT_CODE)$(PAPER_NUMBER)
################################################################################ # # File: $Id$ # # Set up variables that specify the current paper. These are mostly used # as parameters to the XSLT processor when generating documents. # ################################################################################ ################################################################################ # # Set up variables for the current paper. # # Note the quadruple-escaping to ensure that backslashes make it into LaTeX! # SUBJECT_CODE:=INFO PAPER_NUMBER:=212 PAPER_TITLE:=Database\\\\ Design\\\\ and\\\\ Management PAPER_YEAR:=2011 PAPER_PERIOD:=Semester\\\\ 1 HANDBOOK_AUTHORS:=Chris\\\\ Edwards\\\\ and\\\\ Nigel\\\\ Stanger ################################################################################ # # Define the root directory for this paper. ALL_PAPERS_ROOT is an # environment variable that contains the path to the top level directory # for all papers (e.g., /path/to/Teaching/2005). # PAPER_ROOT:=$(ALL_PAPERS_ROOT)/$(SUBJECT_CODE)$(PAPER_NUMBER)
Show line notes below