Hi there,
Not being an expert in press related topics, could you give me more details on what you mean by mirror page? Do you want to have the same text on the forth and the back of the page? Do you want to have the headers/footers placed so that the page number is always on the outside/inside of ...
Search found 11 matches
- Wed May 06, 2009 11:47 am
- Forum: Page Layout
- Topic: Generating mirror-image pages
- Replies: 3
- Views: 6340
- Wed May 06, 2009 7:56 am
- Forum: Page Layout
- Topic: Generating mirror-image pages
- Replies: 3
- Views: 6340
Generating mirror-image pages
Hi
I have a fairly complex LaTeX document, intended for printing at a press. The press would like all pages in the output document to be mirror images of the original pages for the highest quality of output.
Is there some way to mirror all pages of a LaTeX file (or its output PDF) ?
thanks
s.b.
I have a fairly complex LaTeX document, intended for printing at a press. The press would like all pages in the output document to be mirror images of the original pages for the highest quality of output.
Is there some way to mirror all pages of a LaTeX file (or its output PDF) ?
thanks
s.b.
- Tue Apr 28, 2009 4:10 pm
- Forum: Graphics, Figures & Tables
- Topic: Best chart format for LaTeX from spreadsheet
- Replies: 1
- Views: 1863
Best chart format for LaTeX from spreadsheet
Dear all
I want to import several charts from OpenOffice Calc. I created the charts, and since Calc has no direct graphics export, pasted the graph into OpenOffice Draw, and then exported the selected graph into PNG for eventual import into LaTeX. This works, but the quality of the chart is poor ...
I want to import several charts from OpenOffice Calc. I created the charts, and since Calc has no direct graphics export, pasted the graph into OpenOffice Draw, and then exported the selected graph into PNG for eventual import into LaTeX. This works, but the quality of the chart is poor ...
- Mon Apr 27, 2009 8:20 pm
- Forum: General
- Topic: Box autonumbering
- Replies: 1
- Views: 1587
Box autonumbering
Dear all
I have a series of boxes created through \colorbox\parbox and \shadowbox\parbox combinations. Is there any way to automatically number them (similar to tables and figures) and have a List of Boxes generated automatically?
thanks in advance
sb
I have a series of boxes created through \colorbox\parbox and \shadowbox\parbox combinations. Is there any way to automatically number them (similar to tables and figures) and have a List of Boxes generated automatically?
thanks in advance
sb
- Mon Apr 27, 2009 4:10 pm
- Forum: General
- Topic: Defining and reusing variables
- Replies: 4
- Views: 27609
Defining and reusing variables
The first problem is solved by defining a new length, setting it to \fboxsep and use it later on to reset \fboxsep .
\newlength{\mylength}
\setlength{\mylength}{\fboxsep} % Saving fboxsep into mylength
\setlength{\fboxsep}{20pt}
...
\setlength{\fboxsep}{\mylength} % restoring fboxsep
Best ...
\newlength{\mylength}
\setlength{\mylength}{\fboxsep} % Saving fboxsep into mylength
\setlength{\fboxsep}{20pt}
...
\setlength{\fboxsep}{\mylength} % restoring fboxsep
Best ...
- Mon Apr 27, 2009 11:13 am
- Forum: General
- Topic: Defining and reusing variables
- Replies: 4
- Views: 27609
Defining and reusing variables
Dear all
How do I define a variable and then reuse it later in the document? Something like:
\def\MyVariable{\value{fboxsep}}
\setlength{\fboxsep}{20pt}
%% Do some stuff
% Now restore the value
\setlength{\fboxsep}{\MyVariable}
Also, how can I define a variable in one place and reuse it as a ...
How do I define a variable and then reuse it later in the document? Something like:
\def\MyVariable{\value{fboxsep}}
\setlength{\fboxsep}{20pt}
%% Do some stuff
% Now restore the value
\setlength{\fboxsep}{\MyVariable}
Also, how can I define a variable in one place and reuse it as a ...
- Thu Mar 26, 2009 8:09 pm
- Forum: General
- Topic: Overcoming limitation of max nine parameters
- Replies: 5
- Views: 8892
Re: Overcoming limitation of max nine parameters
Dear gmedina, localghost
After reading the documentation for xargs, I'm inclined to believe gmedina is right...while xargs package enhances the flexibility of parameters, it doesn't seem to enhance their number (I may be completely wrong).
das
After reading the documentation for xargs, I'm inclined to believe gmedina is right...while xargs package enhances the flexibility of parameters, it doesn't seem to enhance their number (I may be completely wrong).
das
- Thu Mar 26, 2009 4:19 pm
- Forum: General
- Topic: Overcoming limitation of max nine parameters
- Replies: 5
- Views: 8892
Overcoming limitation of max nine parameters
Dear all
The following code doesn't compile as LaTeX seems to have a built-in limit of 9 arguments. Is there some way to side-step this limitation?
\newcommand{\oneTick}[28]{\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put(#2,#3){#4}
\put(#5,#6){#7}
\put(#8,#9){#10}
\put(#11,#12 ...
The following code doesn't compile as LaTeX seems to have a built-in limit of 9 arguments. Is there some way to side-step this limitation?
\newcommand{\oneTick}[28]{\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put(#2,#3){#4}
\put(#5,#6){#7}
\put(#8,#9){#10}
\put(#11,#12 ...
- Thu Mar 26, 2009 3:17 pm
- Forum: General
- Topic: Newbie question on using arguments to \newcommand
- Replies: 1
- Views: 1508
Re: Newbie question on using arguments to \newcommand
Sorry, trivial error--I used braces instead of parens...it works with parens.
s.b.
s.b.
- Thu Mar 26, 2009 3:11 pm
- Forum: General
- Topic: Newbie question on using arguments to \newcommand
- Replies: 1
- Views: 1508
Newbie question on using arguments to \newcommand
Dear all
I'd like to use arguments passed in into \newcommand as arguments to \put. The following, however, doesn't compile. What would be the right way to do this?
\newcommand{\myticket}[4]{
\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put{#2,#3}{#4}
}
}
Then I try to call it with ...
I'd like to use arguments passed in into \newcommand as arguments to \put. The following, however, doesn't compile. What would be the right way to do this?
\newcommand{\myticket}[4]{
\ticket{%
\put(7,38){\makebox[0mm]{\bfseries\Large #1}}
\put{#2,#3}{#4}
}
}
Then I try to call it with ...