Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 08-29-2022, 03:47 PM
Swarup Swarup is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 11 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2019
Competent Performer
1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page
 
Join Date: Jul 2018
Posts: 185
Swarup is on a distinguished road
Default 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page

I have several poems, each of which has a quotation mark at the beginning and the end. For example:

“तृणादपि सुनीचेन तरोरिव सहिष्णुना ।
अमानिनां मानदेयं, कीर्तनीयः सदा हरिः ॥“
Tròádapi suniicena taroriva sahiïòuná;
amánináî mánadeyaî, kiirtaniiyah sadá Harih.

The formatting I wish to achieve is as follows: First line central aligned. The first letter of Lines 2, 3, 4 should match up with the location of the first letter of line one -- not the quote mark, but the first letter. So the four lines will appear to be left aligned i.e. the left edge of the group of four lines will be the same, but with all four located in the middle of the page.

What I usually do is:


1. Central align the first line
2. Highlight lines 2-4 and drag them over to the right using the ruler tool at the top of the page, until their first letter lines up with the first letter of the first line.

The problem I encounter is that, due to the quotation mark at the beginning of the first line, I am often unable to get the first letter of lines 2-4 to match exactly with the first letter of line 1. Because of the quotation mark, the first letter of lines 2-4 ends up slight ahead of or slightly behind the first letter of line one. If I remove the quotation mark from the beginning of line one, then they can be made to line up perfectly. But as soon as I add the quotation mark, it makes it impossible to line up the first letters.
Reply With Quote
  #2  
Old 08-30-2022, 10:30 AM
Charles Kenyon Charles Kenyon is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 11 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2021
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,138
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

There is no simple way to do this. Nothing is built into Word.

Workaround:
  1. Center your first line.
  2. Type your second line left-justified.
  3. Set a tab setting at the start of the first line. (or) set a Left Indent for that line at that point.
  4. Press the tab key at the beginning of the line. (not needed with the Indent)
  5. Pressing Enter at the end of your line will give you the same formatting for the next line.
Easier workaround but not as precise:
  • Set a left indent that approximates what you want for all poems and use a style formatted with that indent for all lines.
  • The first line will not be exactly centered many times, but should still be close enough. If it is not, move the indent for the poem to the point where the first line is centered.
Reply With Quote
  #3  
Old 09-13-2022, 09:35 AM
spillerbd spillerbd is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 10 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2021
Competent Performer
 
Join Date: Jan 2016
Posts: 130
spillerbd is on a distinguished road
Default

You may want to look at kerning of the first characters on that first line.
This is referred to as Spacing in Word. Select the characters and then go the font detail settings, advanced tab.
Reply With Quote
  #4  
Old 09-13-2022, 08:13 PM
Guessed's Avatar
Guessed Guessed is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 10 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 3,975
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

Have you tried a macro to do this (after selecting all the paragraphs you want to align)?
Code:
Sub AlignWithMe()
  Dim aPar As Paragraph, aRng As Range, iPos As Integer
  
  Set aRng = Selection.Range
  aRng.Paragraphs(1).Alignment = wdAlignParagraphCenter
  iPos = aRng.Paragraphs(1).Range.Characters(2).Information(wdHorizontalPositionRelativeToTextBoundary)
  aRng.MoveStart Unit:=wdParagraph, Count:=1
  With aRng.Paragraphs
    .Alignment = wdAlignParagraphLeft
    .LeftIndent = iPos
  End With
End Sub
You can change the .Characters(2) to specify which character in the first paragraph you want to align with.
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote
  #5  
Old 09-14-2022, 05:16 AM
Charles Kenyon Charles Kenyon is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 11 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2021
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,138
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Very nice work Andrew.
Instructions for Installing Macros from Forums or Websites by Graham Mayor, MVP
Reply With Quote
  #6  
Old 09-14-2022, 08:22 PM
Swarup Swarup is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 11 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2019
Competent Performer
1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page
 
Join Date: Jul 2018
Posts: 185
Swarup is on a distinguished road
Default

Many thanks to all of you for replying; usually the forum sends me an email to notify me that someone has replied, but for some reason this time I don't seem to have received the email so I didn't realize anyone had replied. I shall study what you have given and try it out.
Reply With Quote
  #7  
Old 09-16-2022, 11:07 AM
spillerbd spillerbd is offline 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Windows 10 1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Office 2021
Competent Performer
 
Join Date: Jan 2016
Posts: 130
spillerbd is on a distinguished road
Thumbs up

Quote:
Originally Posted by Charles Kenyon View Post
Yes. I'll have to put that in my NORMAL.
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help making legal line number stay at 25 lines a page when I have sections with single spaced text LegalTranscriber2017 Word 5 07-16-2022 06:50 PM
1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page word erases line bottom in tight line spacing when new line is added ozzzy Word 2 01-21-2021 06:41 AM
1st line of 4-line poem centrally aligned; how to get lines 2-4 to start at same location on page Rtl text aligned right and ltr text aligned to left in one line - HOW? wordnew Word 10 09-06-2020 08:23 AM
Section and Line Break leaving line on previous page Stonehands99 Word 5 08-13-2019 08:59 PM
Can you prevent an empty line from appearing in the first line of a page? New Daddy Word 10 11-18-2013 07:01 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 09:18 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft