Search found 40 matches

by kornaros
Tue Feb 02, 2016 11:08 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

I make some experiments using flushbottom command without 12pt in the documentclass and with huge font sizes! I have almost..sucess I found that the command \flushbottom does not work well for some pages with a blank line(new paragraph) I hope that there is some kind of glue for linebreaks or other ...
by kornaros
Tue Feb 02, 2016 10:38 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

Good news! I delete 12pt from the preamble and add \flushbottom ! Everything worked! I don't understand comletely the reason for this success! Maybe because i used a font with size larger than 12 pt?

Anyway, many thanks for your support!
by kornaros
Tue Feb 02, 2016 8:52 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

Dear Johannes_B I don't know how to place\flushbottom to each page of the text! This command affects only the currebt page.. Am I right? Could you please work with my MWE?
Also I found another command \enlargethispage{\baselineskip}

but I have the same problem! I do not know how to insert this ...
by kornaros
Tue Feb 02, 2016 7:56 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

Yes! Something like that in each page in other words : I try to find a trick to keep the bottom of facing pages aligned!
by kornaros
Tue Feb 02, 2016 5:41 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

Johannes_B Sorry! I try to eliminate the blank space at the bottom of each page(after the last line) for the case of a font of big size! Setstretch reduces the space between lines (and increases the number of them reducing this gap) . I do not know how to enlarge the space between succesive lines by ...
by kornaros
Tue Feb 02, 2016 4:52 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

Re: How to add a proper glue between lines of text?

\flushbottom does not solve the problem in my opinion. Maybe this is done using [cmd]\usepackage{setspace}[/cmd] Then I used a big setstretch like [cmd]\setstretch{2.5}[/cmd] This worked well for me for the given size of the letter A but I do not know how this value (2.5) should set properly for ...
by kornaros
Tue Feb 02, 2016 2:57 pm
Forum: Page Layout
Topic: How to add a proper glue between lines of text?
Replies: 13
Views: 11027

How to add a proper glue between lines of text?

Dear members of LC! I have a silly problem. I tried to make an extreme minimal example to expain it. If you run the following piece of code you will notice that the last line of each page does not go to the buttom!
\documentclass[letterpaper, 12pt]{article}
\usepackage[no-math]{fontspec ...
by kornaros
Mon Feb 01, 2016 7:57 pm
Forum: Text Formatting
Topic: Best practice to define a command for horizontal space?
Replies: 4
Views: 5844

Re: Best practice to define a command for horizontal space?

Thanks Johannes_B for this useful information!
by kornaros
Sun Jan 31, 2016 12:48 pm
Forum: Text Formatting
Topic: Best practice to define a command for horizontal space?
Replies: 4
Views: 5844

Re: Best practice to define a command for horizontal space?

Thanks Johannes_B! I am confused sometimes because there many ways to do the same thing in LaTeX! For example, there are many ways for horizontal or vertical space but it is hard to see which is more configurable.. Anyway ...maybe you are right. Do you know if kern and hspace are somehow equivalent ...
by kornaros
Sat Jan 30, 2016 3:13 am
Forum: Text Formatting
Topic: Best practice to define a command for horizontal space?
Replies: 4
Views: 5844

Best practice to define a command for horizontal space?

I try to make a useful command that enters a horizontal space of any length(possitive or negative). Something like
\newcommand{\myhorspace}[1][0.1pt]{%
\hspace{#1}%
%}
I do not if hspace is test practice for such commands and for any use(text or math)!

Maybe it is better to define myhorspace ...