aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v0/texpdf.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2007-10-01 01:50:20 +0100
committerRalph Amissah <ralph@amissah.com>2007-10-01 01:50:20 +0100
commitad5fbbc14216107e19b16654de7ac6dcab28e052 (patch)
tree41afa26f781f5ab6268eb67903f71f3020b7d86a /lib/sisu/v0/texpdf.rb
parentsmall update and fix (diff)
proposed as sisu-0.60.0, see updated CHANGELOG
* parameter reading on first run of file, (initialization of parameters) * composite files (.ssm) building moved to processing directory, to overcome problem of non-writable sisu-source document directories, perhaps also cleaner (management of files) * latex/pdf minor cleaning, * caret '^' is latex special character, additional match for escaping * clean major headings of markup heading tag with tilde and name e.g. '1~meta' * param / metadata, hash sums now returns has sum and file-name only even for sisu-skin
Diffstat (limited to 'lib/sisu/v0/texpdf.rb')
-rw-r--r--lib/sisu/v0/texpdf.rb13
1 files changed, 5 insertions, 8 deletions
diff --git a/lib/sisu/v0/texpdf.rb b/lib/sisu/v0/texpdf.rb
index 31447aae..c2a6b14f 100644
--- a/lib/sisu/v0/texpdf.rb
+++ b/lib/sisu/v0/texpdf.rb
@@ -197,11 +197,11 @@ module SiSU_TeX
end
def latexrun_selective
begin
- ep_dir=Dir.pwd
- Dir.chdir(ep_dir)
+ pwd=Dir.pwd
+ Dir.chdir(pwd) #watch
@tex_f_no=0
info={}
- if FileTest.file?("#{ep_dir}/#{@md.fns}")
+ if FileTest.file?(@env.source_file_with_path)
if @md.fns =~/\.[_-]?sst$/
@dirout=SiSU_Env::Info_env.new(@md.fns)
case @md.fns
@@ -221,7 +221,8 @@ module SiSU_TeX
end
end
else
- puts "\n#{@cX.fuschia}FILE NOT FOUND:#{@cX.off} << #{file} >> - requested latex system processing skipped\n"
+ tell=SiSU_Screen::Ansi.new(@md.cmd,"FILE NOT FOUND: << #{@md.fns} >> - requested latex system processing skipped")
+ tell.warn
end
lst=Dir["*.{aux,log,out}"]
lst.each {|file| File.unlink(file)} if lst
@@ -337,7 +338,6 @@ module SiSU_TeX
def enclose(para,type='')
para.strip!
if type =~/code/; para
- #para = '\begin{footnotesize} \begin{ttfamily} ' + para + ' \end{ttfamily} \end{footnotesize}'
elsif para !~/(\\begin\{tabular\}.*|\\end\{tabular\}|&|#{@@tex_backslash*2})\s*$/ #check
para.gsub!(/(.+)/m,"\n#{@tex.skip_small} \\1 #{@tex.skip_small}\n")
else para
@@ -433,9 +433,6 @@ WOK
@lineone=case para
when /<:(alt|verse|group)>/; para
when /<:code>/; "#{@tex.paraskip_small} \\begin{scriptsize} " + para
- #when /<:code>/; "#{@tex.paraskip_small} \\begin{footnotesize} " + para
- ##when /<:code>/; "#{@tex.paraskip_small} \\begin{texttt} " + para
- #when /<:code>/; "#{@tex.paraskip_small} \\begin{small} \\begin{ttfamily} " + para
else 'error' #should never occur
end
end