Tagged Questions
2
votes
1answer
165 views
Change paper size in journal document class
I'm using this journal's style files and I can see that the .cls file defines paper size as a4paper in the following line:
\ExecuteOptions{a4paper,twoside,final}
However, compiling any document ...
19
votes
5answers
830 views
Wrong A4 measurements?
I noticed that the paper size invoked by a4paper is not working right in my examples:
\documentclass[a4paper,11pt,oneside]{article}
\begin{document}
Test
\end{document}
I checked with Preview.app ...
11
votes
1answer
533 views
Which one is it: a4paper or paper=a4?
I'm using XeLaTeX mostly, and I never know what to put into \documentclass[]{}.
Usually I use something like \documentclass[a4paper, 11pt]{scrartcl}. But I never know whether it's a4paper or paper=a4. ...
8
votes
1answer
1k views
Can \documentclass{minimal} create documents with nonstandard page sizes?
I need to create a document for a square piece of paper. I've been trying to use \documentclass{minimal}, but it doesn't work.
This is my code:
\documentclass{minimal}
\special{papersize=14in,14in}
...
1
vote
2answers
385 views
How create a paper of x,y dimensions size?
How can I create a paper of A1 size on latex? Or a x,y (in centimeters) dimensions paper?
In \documentclass looks like there isn't this option. I need use the \documentclass{standalone} package too ...
5
votes
2answers
295 views
What paper dimensions to use for printing with the octavo class?
I am working on a fiction novel. I want to print this in a comfortable size for carrying and reading. I will have the pages printed, cut to size, glued together, with heavy paper added to the outside ...
6
votes
2answers
279 views
Selecting A8 Paper
As I frequently use
\documentclass[a4paper,12pt]{article}
I though a simple change could select the A8 paper:
\documentclass[a8paper,12pt]{article}
But I get a warning saying the a8paper option ...