tags:

views:

494

answers:

2

I am trying to define the layout for a thesis approval page. So the institute layout has something like "name ..... affiliation _" on one line where "..." is a horizontal fill and affiliation is right justified. How to create such a layout in Latex/Tex?

+4  A: 

Something like

name1\hfill affiliation1\\
name2\hfill affiliation2\\
laalto
A: 

For just spreading things out laalto nailed it: use hfill. If you want to get the intervening space filled with "..." or similar look at the way tables of contents are implemented in the standard classes.

You might also consider if the minitoc package can be made to work for you. Likewise the smalltableof package.

dmckee