Alignment with a symbol within sqrt

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
3
down vote

favorite
2












In this MWE I get an error.
My aim is that the "6" is appearing directly beneath the "2".



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 & 2345= \
& 6
endalign*
enddocument









share|improve this question





















  • There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
    – Werner
    5 hours ago










  • @Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
    – Thales
    3 hours ago














up vote
3
down vote

favorite
2












In this MWE I get an error.
My aim is that the "6" is appearing directly beneath the "2".



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 & 2345= \
& 6
endalign*
enddocument









share|improve this question





















  • There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
    – Werner
    5 hours ago










  • @Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
    – Thales
    3 hours ago












up vote
3
down vote

favorite
2









up vote
3
down vote

favorite
2






2





In this MWE I get an error.
My aim is that the "6" is appearing directly beneath the "2".



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 & 2345= \
& 6
endalign*
enddocument









share|improve this question













In this MWE I get an error.
My aim is that the "6" is appearing directly beneath the "2".



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 & 2345= \
& 6
endalign*
enddocument






align






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 5 hours ago









Thales

414




414











  • There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
    – Werner
    5 hours ago










  • @Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
    – Thales
    3 hours ago
















  • There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
    – Werner
    5 hours ago










  • @Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
    – Thales
    3 hours ago















There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
– Werner
5 hours ago




There are a number of ways to achieve this. Do you have a specific goal in mind other than placing one number underneath another?
– Werner
5 hours ago












@Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
– Thales
3 hours ago




@Werner In principle it's only about placing numbers. My goal is typesetting an algorithm similar to divison. I specified my question now in a new case called "Alignment and phantom". (I know about the package xlop but think this does not help here).
– Thales
3 hours ago










1 Answer
1






active

oldest

votes

















up vote
4
down vote













You cannot use alignment points (&) inside an sqrt structure. Instead, here I use phantom to provide the requested buffer.



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 2345= \
6phantom345 =
endalign*
enddocument


enter image description here



If you want the rows closer together, use something like \[-6pt] as the row separator.






share|improve this answer






















  • Thanks! That helps me.
    – Thales
    5 hours ago











  • ok, cleaning up comment
    – jfbu
    5 hours ago










Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f459050%2falignment-with-a-symbol-within-sqrt%23new-answer', 'question_page');

);

Post as a guest






























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
4
down vote













You cannot use alignment points (&) inside an sqrt structure. Instead, here I use phantom to provide the requested buffer.



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 2345= \
6phantom345 =
endalign*
enddocument


enter image description here



If you want the rows closer together, use something like \[-6pt] as the row separator.






share|improve this answer






















  • Thanks! That helps me.
    – Thales
    5 hours ago











  • ok, cleaning up comment
    – jfbu
    5 hours ago














up vote
4
down vote













You cannot use alignment points (&) inside an sqrt structure. Instead, here I use phantom to provide the requested buffer.



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 2345= \
6phantom345 =
endalign*
enddocument


enter image description here



If you want the rows closer together, use something like \[-6pt] as the row separator.






share|improve this answer






















  • Thanks! That helps me.
    – Thales
    5 hours ago











  • ok, cleaning up comment
    – jfbu
    5 hours ago












up vote
4
down vote










up vote
4
down vote









You cannot use alignment points (&) inside an sqrt structure. Instead, here I use phantom to provide the requested buffer.



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 2345= \
6phantom345 =
endalign*
enddocument


enter image description here



If you want the rows closer together, use something like \[-6pt] as the row separator.






share|improve this answer














You cannot use alignment points (&) inside an sqrt structure. Instead, here I use phantom to provide the requested buffer.



documentclassarticle
usepackageamsmath
begindocument
beginalign*
sqrt1 2345= \
6phantom345 =
endalign*
enddocument


enter image description here



If you want the rows closer together, use something like \[-6pt] as the row separator.







share|improve this answer














share|improve this answer



share|improve this answer








edited 5 hours ago

























answered 5 hours ago









Steven B. Segletes

150k9188396




150k9188396











  • Thanks! That helps me.
    – Thales
    5 hours ago











  • ok, cleaning up comment
    – jfbu
    5 hours ago
















  • Thanks! That helps me.
    – Thales
    5 hours ago











  • ok, cleaning up comment
    – jfbu
    5 hours ago















Thanks! That helps me.
– Thales
5 hours ago





Thanks! That helps me.
– Thales
5 hours ago













ok, cleaning up comment
– jfbu
5 hours ago




ok, cleaning up comment
– jfbu
5 hours ago

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f459050%2falignment-with-a-symbol-within-sqrt%23new-answer', 'question_page');

);

Post as a guest













































































Zg,b,yS,LuDK1t2v0,O,cR 8m wB uvXnhq80EHUt,5xu OawpMMkrjxgaUjKb
Dtv7pL,ZHWXdHgtg1osC

Popular posts from this blog

How to check contact read email or not when send email to Individual?

How many registers does an x86_64 CPU actually have?

Displaying single band from multi-band raster using QGIS