[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Using fprintf to output a .tex file
From: |
Graham Toal |
Subject: |
Re: Using fprintf to output a .tex file |
Date: |
Mon, 17 Jun 2013 14:06:53 +0000 |
> I have sort of isolated the issue (I have many lines similar to this one):
> s=[s '1 - D & Adjustable Power Supply & Hewlett Packard & 6012B &
> $\\pm$0.65\\% & @ 95\\% confidence level k=2 \\\\ \\hline \n'];
Yep, there it is - it's the "%". Either use s as data to a "%s" for the whole
string, or escape %'s in the string as well:
s=[s '1 - D & Adjustable Power Supply & Hewlett Packard & 6012B &
$\\pm$0.65\\\% & @ 95\\% confidence level k=2 \\\\ \\hline \n'];