I have imported a PDF with a electronic schematic and have found that text are kept together all over the drawing and not just over linebreaks.
XML editor looks like: ==========================- <svg:text id="text1"> <svg:tspan id="tspan1"> "Choose power supply" <svg:tspan id="tspan2"> "with jumper" <svg:tspan id="tspan3"> "between A, B, or C" <svg:tspan id="tspan4"> "R1" <svg:tspan id="tspan5"> "R37" ==========================-
They are positioned in the big drawing like this : Upper right corner: "Choose power supply with jumper between A, B, or C" Low to the right: "R1" Center of drawing: "R37"
Is there a simple way to breakĀ“them apart to single line text so I can handle/move them individually? Commando, macro or something else to give me somthing like this:
================== <svg:text id="text1"> <svg:tspan id="tspan1"> "Choose power supply" <svg:text id="text2"> <svg:tspan id="tspan2"> "with jumper" <svg:text id="text3"> <svg:tspan id="tspan3"> "between A, B, or C" <svg:text id="text4"> <svg:tspan id="tspan4"> "R1" <svg:text id="text5"> <svg:tspan id="tspan5"> "R37" =====================
// Gunnar Lestander
participants (1)
-
Gunnar Lestander