Modifying TeX/Syntex











up vote
0
down vote

favorite












There is a glaring design flaw in TeX or Syntex for location of words.



Given a text in a .tex files:



Blah blah blah. This is a sentence blah! Blah Blah!


The whole paragraph is treated as one unit rather than the individual words.



It turns out that if one adds new lines to each word or line then the syncing works great:



Blah 
blah
blah.
This
is
a
sentence
blah!
Blah
Blah!


And we get single word accuracy.



The problem is that it makes reading the tex file pointless and hence it is not a proper solution.



A real solution would be to have the compiler to automatically translate words(or lines) in to separate lines automatically.



This would provide the proper syntex for word or line resolution but the back propagation would not match the original unaltered .tex file.



The line info would need to be kept track of and then inversely mapped.



Is there any way to do this easily?



e.g.,



Line1:
Blah blah blah. This is a sentence blah! Blah Blah!
Line2:


becomes
Line1:
Blah
Line 2:
blah
Line 3:
blah.
Line 4:
This
Line 5:
is
Line 6:
a
Line 7:
sentence
Line 8:
blah!
Line 9:
Blah
Line 10:
Blah!



And these inserted new lines positions are then kept track of to do the inverse map back in to the column that they were inserted from.



This is all basic mapping and pretty easy do to with a few lines of code except for a few problems.



1: One must not insert new lines in invalid place that will break the .tex file or alter it's output.
2: The editor that responds to the synctex must be able to do the inverse mapping from lines to line/col.



Essentially one could insert a new line in every space as long as it won't break the .tex code and would get word level accuracy. This could potentially be done pre-compilation if proper word boundaries could be determined. I think though it would be better if it could be done in an environment such as



begin{synctexing}



end{synctexing}



which would essentially add the new lines to all the text in between and ignore any environments inside so things like tikz pictures could be inserted without having to create a bunch of environments.



It would simply output the mapping file(line/col to line) and the editor would have to be able to reverse the map(easy but it would require supporting it unless they already support columns(but that synctex just always gives them 0).



The problem is not that this is difficult but about the specifics which I know nothing about.



In fact, even if we had to do something like snl which adds a new line to the synctex, it would be better than nothing.










share|improve this question






















  • in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
    – KJO
    3 hours ago












  • What is “Syntex”? Did you mean SyncTeX?
    – Henri Menke
    3 hours ago










  • SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
    – Henri Menke
    3 hours ago















up vote
0
down vote

favorite












There is a glaring design flaw in TeX or Syntex for location of words.



Given a text in a .tex files:



Blah blah blah. This is a sentence blah! Blah Blah!


The whole paragraph is treated as one unit rather than the individual words.



It turns out that if one adds new lines to each word or line then the syncing works great:



Blah 
blah
blah.
This
is
a
sentence
blah!
Blah
Blah!


And we get single word accuracy.



The problem is that it makes reading the tex file pointless and hence it is not a proper solution.



A real solution would be to have the compiler to automatically translate words(or lines) in to separate lines automatically.



This would provide the proper syntex for word or line resolution but the back propagation would not match the original unaltered .tex file.



The line info would need to be kept track of and then inversely mapped.



Is there any way to do this easily?



e.g.,



Line1:
Blah blah blah. This is a sentence blah! Blah Blah!
Line2:


becomes
Line1:
Blah
Line 2:
blah
Line 3:
blah.
Line 4:
This
Line 5:
is
Line 6:
a
Line 7:
sentence
Line 8:
blah!
Line 9:
Blah
Line 10:
Blah!



And these inserted new lines positions are then kept track of to do the inverse map back in to the column that they were inserted from.



This is all basic mapping and pretty easy do to with a few lines of code except for a few problems.



1: One must not insert new lines in invalid place that will break the .tex file or alter it's output.
2: The editor that responds to the synctex must be able to do the inverse mapping from lines to line/col.



Essentially one could insert a new line in every space as long as it won't break the .tex code and would get word level accuracy. This could potentially be done pre-compilation if proper word boundaries could be determined. I think though it would be better if it could be done in an environment such as



begin{synctexing}



end{synctexing}



which would essentially add the new lines to all the text in between and ignore any environments inside so things like tikz pictures could be inserted without having to create a bunch of environments.



It would simply output the mapping file(line/col to line) and the editor would have to be able to reverse the map(easy but it would require supporting it unless they already support columns(but that synctex just always gives them 0).



The problem is not that this is difficult but about the specifics which I know nothing about.



In fact, even if we had to do something like snl which adds a new line to the synctex, it would be better than nothing.










share|improve this question






















  • in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
    – KJO
    3 hours ago












  • What is “Syntex”? Did you mean SyncTeX?
    – Henri Menke
    3 hours ago










  • SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
    – Henri Menke
    3 hours ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











There is a glaring design flaw in TeX or Syntex for location of words.



Given a text in a .tex files:



Blah blah blah. This is a sentence blah! Blah Blah!


The whole paragraph is treated as one unit rather than the individual words.



It turns out that if one adds new lines to each word or line then the syncing works great:



Blah 
blah
blah.
This
is
a
sentence
blah!
Blah
Blah!


And we get single word accuracy.



The problem is that it makes reading the tex file pointless and hence it is not a proper solution.



A real solution would be to have the compiler to automatically translate words(or lines) in to separate lines automatically.



This would provide the proper syntex for word or line resolution but the back propagation would not match the original unaltered .tex file.



The line info would need to be kept track of and then inversely mapped.



Is there any way to do this easily?



e.g.,



Line1:
Blah blah blah. This is a sentence blah! Blah Blah!
Line2:


becomes
Line1:
Blah
Line 2:
blah
Line 3:
blah.
Line 4:
This
Line 5:
is
Line 6:
a
Line 7:
sentence
Line 8:
blah!
Line 9:
Blah
Line 10:
Blah!



And these inserted new lines positions are then kept track of to do the inverse map back in to the column that they were inserted from.



This is all basic mapping and pretty easy do to with a few lines of code except for a few problems.



1: One must not insert new lines in invalid place that will break the .tex file or alter it's output.
2: The editor that responds to the synctex must be able to do the inverse mapping from lines to line/col.



Essentially one could insert a new line in every space as long as it won't break the .tex code and would get word level accuracy. This could potentially be done pre-compilation if proper word boundaries could be determined. I think though it would be better if it could be done in an environment such as



begin{synctexing}



end{synctexing}



which would essentially add the new lines to all the text in between and ignore any environments inside so things like tikz pictures could be inserted without having to create a bunch of environments.



It would simply output the mapping file(line/col to line) and the editor would have to be able to reverse the map(easy but it would require supporting it unless they already support columns(but that synctex just always gives them 0).



The problem is not that this is difficult but about the specifics which I know nothing about.



In fact, even if we had to do something like snl which adds a new line to the synctex, it would be better than nothing.










share|improve this question













There is a glaring design flaw in TeX or Syntex for location of words.



Given a text in a .tex files:



Blah blah blah. This is a sentence blah! Blah Blah!


The whole paragraph is treated as one unit rather than the individual words.



It turns out that if one adds new lines to each word or line then the syncing works great:



Blah 
blah
blah.
This
is
a
sentence
blah!
Blah
Blah!


And we get single word accuracy.



The problem is that it makes reading the tex file pointless and hence it is not a proper solution.



A real solution would be to have the compiler to automatically translate words(or lines) in to separate lines automatically.



This would provide the proper syntex for word or line resolution but the back propagation would not match the original unaltered .tex file.



The line info would need to be kept track of and then inversely mapped.



Is there any way to do this easily?



e.g.,



Line1:
Blah blah blah. This is a sentence blah! Blah Blah!
Line2:


becomes
Line1:
Blah
Line 2:
blah
Line 3:
blah.
Line 4:
This
Line 5:
is
Line 6:
a
Line 7:
sentence
Line 8:
blah!
Line 9:
Blah
Line 10:
Blah!



And these inserted new lines positions are then kept track of to do the inverse map back in to the column that they were inserted from.



This is all basic mapping and pretty easy do to with a few lines of code except for a few problems.



1: One must not insert new lines in invalid place that will break the .tex file or alter it's output.
2: The editor that responds to the synctex must be able to do the inverse mapping from lines to line/col.



Essentially one could insert a new line in every space as long as it won't break the .tex code and would get word level accuracy. This could potentially be done pre-compilation if proper word boundaries could be determined. I think though it would be better if it could be done in an environment such as



begin{synctexing}



end{synctexing}



which would essentially add the new lines to all the text in between and ignore any environments inside so things like tikz pictures could be inserted without having to create a bunch of environments.



It would simply output the mapping file(line/col to line) and the editor would have to be able to reverse the map(easy but it would require supporting it unless they already support columns(but that synctex just always gives them 0).



The problem is not that this is difficult but about the specifics which I know nothing about.



In fact, even if we had to do something like snl which adds a new line to the synctex, it would be better than nothing.







forward-inverse-search






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 3 hours ago









AbstractDissonance

1,97221733




1,97221733












  • in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
    – KJO
    3 hours ago












  • What is “Syntex”? Did you mean SyncTeX?
    – Henri Menke
    3 hours ago










  • SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
    – Henri Menke
    3 hours ago


















  • in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
    – KJO
    3 hours ago












  • What is “Syntex”? Did you mean SyncTeX?
    – Henri Menke
    3 hours ago










  • SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
    – Henri Menke
    3 hours ago
















in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
– KJO
3 hours ago






in very rough terms synctex can map word for word using "hinting" and some editors can jump character to character --- However to be universally functional in the majority of cases it tries to show unknown editor line for unknown renderer line so at its simplest its a basic cross index of tex line17 = pdf line4 with all the issues that entails
– KJO
3 hours ago














What is “Syntex”? Did you mean SyncTeX?
– Henri Menke
3 hours ago




What is “Syntex”? Did you mean SyncTeX?
– Henri Menke
3 hours ago












SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
– Henri Menke
3 hours ago




SyncTeX does not record glyph nodes but kerns and glues. Since interword spaces are glue nodes, SyncTeX should in principle have single-word granularity.
– Henri Menke
3 hours ago










1 Answer
1






active

oldest

votes

















up vote
0
down vote













The SyncTeX architecture currently maps the position on the PDF page to the line and a “tag” in the input file (I don't really know what “tag“ is).



This is the SyncTeX data structure from syntex.c:



/*  Here are all the local variables gathered in one "synchronization context"  */
static struct {
void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */
synctex_fprintf_t fprintf; /* either fprintf or gzprintf */
char *busy_name; /* the real "foo.synctex(busy)" or "foo.synctex.gz(busy)" name, with output_directory */
char *root_name; /* in general jobname.tex */
integer count; /* The number of interesting records in "foo.synctex" */
/* next concern the last sync record encountered */
halfword node; /* the last synchronized node, must be set
* before the recorder */
synctex_recorder_t recorder;/* the recorder of the node above, the
* routine that knows how to record the
* node to the .synctex file */
integer tag, line; /* current tag and line */
integer curh, curv; /* current point */
integer magnification; /* The magnification as given by mag */
integer unit; /* The unit, defaults to 1, use 8192 to produce shorter but less accurate info */
integer total_length; /* The total length of the bytes written since the last check point */
integer options; /* unsigned options */
integer lastv; /* compression trick if
|synctex_options&4|>0. */
integer form_depth; /* pdf forms are an example of nested sheets */
struct _flags {
unsigned int option_read:1; /* Command line option read (in case of problem or at the end) */
unsigned int content_ready:1; /* Command line option read (in case of problem or at the end) */
unsigned int off:1; /* Definitely turn off synctex, corresponds to cli option -synctex=0 */
unsigned int no_gz:1; /* Whether zlib is used or not */
unsigned int not_void:1; /* Whether it really contains synchronization material */
unsigned int warn:1; /* One shot warning flag */
unsigned int quoted:1; /* Whether the input file name was quoted by tex or not, for example ""my input file.tex"", unused by XeTeX */
unsigned int output_p:1; /* Whether the output_directory is used */
unsigned int reserved:SYNCTEX_BITS_PER_BYTE*sizeof(int)-8; /* Align */
} flags;
} synctex_ctxt = {


To also record the column in the input file, you'd have to add another field to the data structure and adapt all the recorder functions to write this entry to the SyncTeX file. The next step would be to adapt the SyncTeX parser to pick up the column from the SyncTeX file. Then you'd have to edit the source code of your editor to make it aware that inverse search now also maps to the column. The hardest part is, that all of the above has to be done in a backwards compatible way, such that your editor can still read SyncTeX files from older version and that SyncTeX files written with the newer version can still be read by old parsers.



So bottomlined, it is theoretically possible to implement your idea but finding someone to practically do this is probably NP-hard.






share|improve this answer





















  • Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
    – KJO
    2 hours ago










  • @KJO Really? I can't find any column information in the SyncTeX file.
    – Henri Menke
    1 hour 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%2f462482%2fmodifying-tex-syntex%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













The SyncTeX architecture currently maps the position on the PDF page to the line and a “tag” in the input file (I don't really know what “tag“ is).



This is the SyncTeX data structure from syntex.c:



/*  Here are all the local variables gathered in one "synchronization context"  */
static struct {
void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */
synctex_fprintf_t fprintf; /* either fprintf or gzprintf */
char *busy_name; /* the real "foo.synctex(busy)" or "foo.synctex.gz(busy)" name, with output_directory */
char *root_name; /* in general jobname.tex */
integer count; /* The number of interesting records in "foo.synctex" */
/* next concern the last sync record encountered */
halfword node; /* the last synchronized node, must be set
* before the recorder */
synctex_recorder_t recorder;/* the recorder of the node above, the
* routine that knows how to record the
* node to the .synctex file */
integer tag, line; /* current tag and line */
integer curh, curv; /* current point */
integer magnification; /* The magnification as given by mag */
integer unit; /* The unit, defaults to 1, use 8192 to produce shorter but less accurate info */
integer total_length; /* The total length of the bytes written since the last check point */
integer options; /* unsigned options */
integer lastv; /* compression trick if
|synctex_options&4|>0. */
integer form_depth; /* pdf forms are an example of nested sheets */
struct _flags {
unsigned int option_read:1; /* Command line option read (in case of problem or at the end) */
unsigned int content_ready:1; /* Command line option read (in case of problem or at the end) */
unsigned int off:1; /* Definitely turn off synctex, corresponds to cli option -synctex=0 */
unsigned int no_gz:1; /* Whether zlib is used or not */
unsigned int not_void:1; /* Whether it really contains synchronization material */
unsigned int warn:1; /* One shot warning flag */
unsigned int quoted:1; /* Whether the input file name was quoted by tex or not, for example ""my input file.tex"", unused by XeTeX */
unsigned int output_p:1; /* Whether the output_directory is used */
unsigned int reserved:SYNCTEX_BITS_PER_BYTE*sizeof(int)-8; /* Align */
} flags;
} synctex_ctxt = {


To also record the column in the input file, you'd have to add another field to the data structure and adapt all the recorder functions to write this entry to the SyncTeX file. The next step would be to adapt the SyncTeX parser to pick up the column from the SyncTeX file. Then you'd have to edit the source code of your editor to make it aware that inverse search now also maps to the column. The hardest part is, that all of the above has to be done in a backwards compatible way, such that your editor can still read SyncTeX files from older version and that SyncTeX files written with the newer version can still be read by old parsers.



So bottomlined, it is theoretically possible to implement your idea but finding someone to practically do this is probably NP-hard.






share|improve this answer





















  • Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
    – KJO
    2 hours ago










  • @KJO Really? I can't find any column information in the SyncTeX file.
    – Henri Menke
    1 hour ago















up vote
0
down vote













The SyncTeX architecture currently maps the position on the PDF page to the line and a “tag” in the input file (I don't really know what “tag“ is).



This is the SyncTeX data structure from syntex.c:



/*  Here are all the local variables gathered in one "synchronization context"  */
static struct {
void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */
synctex_fprintf_t fprintf; /* either fprintf or gzprintf */
char *busy_name; /* the real "foo.synctex(busy)" or "foo.synctex.gz(busy)" name, with output_directory */
char *root_name; /* in general jobname.tex */
integer count; /* The number of interesting records in "foo.synctex" */
/* next concern the last sync record encountered */
halfword node; /* the last synchronized node, must be set
* before the recorder */
synctex_recorder_t recorder;/* the recorder of the node above, the
* routine that knows how to record the
* node to the .synctex file */
integer tag, line; /* current tag and line */
integer curh, curv; /* current point */
integer magnification; /* The magnification as given by mag */
integer unit; /* The unit, defaults to 1, use 8192 to produce shorter but less accurate info */
integer total_length; /* The total length of the bytes written since the last check point */
integer options; /* unsigned options */
integer lastv; /* compression trick if
|synctex_options&4|>0. */
integer form_depth; /* pdf forms are an example of nested sheets */
struct _flags {
unsigned int option_read:1; /* Command line option read (in case of problem or at the end) */
unsigned int content_ready:1; /* Command line option read (in case of problem or at the end) */
unsigned int off:1; /* Definitely turn off synctex, corresponds to cli option -synctex=0 */
unsigned int no_gz:1; /* Whether zlib is used or not */
unsigned int not_void:1; /* Whether it really contains synchronization material */
unsigned int warn:1; /* One shot warning flag */
unsigned int quoted:1; /* Whether the input file name was quoted by tex or not, for example ""my input file.tex"", unused by XeTeX */
unsigned int output_p:1; /* Whether the output_directory is used */
unsigned int reserved:SYNCTEX_BITS_PER_BYTE*sizeof(int)-8; /* Align */
} flags;
} synctex_ctxt = {


To also record the column in the input file, you'd have to add another field to the data structure and adapt all the recorder functions to write this entry to the SyncTeX file. The next step would be to adapt the SyncTeX parser to pick up the column from the SyncTeX file. Then you'd have to edit the source code of your editor to make it aware that inverse search now also maps to the column. The hardest part is, that all of the above has to be done in a backwards compatible way, such that your editor can still read SyncTeX files from older version and that SyncTeX files written with the newer version can still be read by old parsers.



So bottomlined, it is theoretically possible to implement your idea but finding someone to practically do this is probably NP-hard.






share|improve this answer





















  • Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
    – KJO
    2 hours ago










  • @KJO Really? I can't find any column information in the SyncTeX file.
    – Henri Menke
    1 hour ago













up vote
0
down vote










up vote
0
down vote









The SyncTeX architecture currently maps the position on the PDF page to the line and a “tag” in the input file (I don't really know what “tag“ is).



This is the SyncTeX data structure from syntex.c:



/*  Here are all the local variables gathered in one "synchronization context"  */
static struct {
void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */
synctex_fprintf_t fprintf; /* either fprintf or gzprintf */
char *busy_name; /* the real "foo.synctex(busy)" or "foo.synctex.gz(busy)" name, with output_directory */
char *root_name; /* in general jobname.tex */
integer count; /* The number of interesting records in "foo.synctex" */
/* next concern the last sync record encountered */
halfword node; /* the last synchronized node, must be set
* before the recorder */
synctex_recorder_t recorder;/* the recorder of the node above, the
* routine that knows how to record the
* node to the .synctex file */
integer tag, line; /* current tag and line */
integer curh, curv; /* current point */
integer magnification; /* The magnification as given by mag */
integer unit; /* The unit, defaults to 1, use 8192 to produce shorter but less accurate info */
integer total_length; /* The total length of the bytes written since the last check point */
integer options; /* unsigned options */
integer lastv; /* compression trick if
|synctex_options&4|>0. */
integer form_depth; /* pdf forms are an example of nested sheets */
struct _flags {
unsigned int option_read:1; /* Command line option read (in case of problem or at the end) */
unsigned int content_ready:1; /* Command line option read (in case of problem or at the end) */
unsigned int off:1; /* Definitely turn off synctex, corresponds to cli option -synctex=0 */
unsigned int no_gz:1; /* Whether zlib is used or not */
unsigned int not_void:1; /* Whether it really contains synchronization material */
unsigned int warn:1; /* One shot warning flag */
unsigned int quoted:1; /* Whether the input file name was quoted by tex or not, for example ""my input file.tex"", unused by XeTeX */
unsigned int output_p:1; /* Whether the output_directory is used */
unsigned int reserved:SYNCTEX_BITS_PER_BYTE*sizeof(int)-8; /* Align */
} flags;
} synctex_ctxt = {


To also record the column in the input file, you'd have to add another field to the data structure and adapt all the recorder functions to write this entry to the SyncTeX file. The next step would be to adapt the SyncTeX parser to pick up the column from the SyncTeX file. Then you'd have to edit the source code of your editor to make it aware that inverse search now also maps to the column. The hardest part is, that all of the above has to be done in a backwards compatible way, such that your editor can still read SyncTeX files from older version and that SyncTeX files written with the newer version can still be read by old parsers.



So bottomlined, it is theoretically possible to implement your idea but finding someone to practically do this is probably NP-hard.






share|improve this answer












The SyncTeX architecture currently maps the position on the PDF page to the line and a “tag” in the input file (I don't really know what “tag“ is).



This is the SyncTeX data structure from syntex.c:



/*  Here are all the local variables gathered in one "synchronization context"  */
static struct {
void *file; /* the foo.synctex or foo.synctex.gz I/O identifier */
synctex_fprintf_t fprintf; /* either fprintf or gzprintf */
char *busy_name; /* the real "foo.synctex(busy)" or "foo.synctex.gz(busy)" name, with output_directory */
char *root_name; /* in general jobname.tex */
integer count; /* The number of interesting records in "foo.synctex" */
/* next concern the last sync record encountered */
halfword node; /* the last synchronized node, must be set
* before the recorder */
synctex_recorder_t recorder;/* the recorder of the node above, the
* routine that knows how to record the
* node to the .synctex file */
integer tag, line; /* current tag and line */
integer curh, curv; /* current point */
integer magnification; /* The magnification as given by mag */
integer unit; /* The unit, defaults to 1, use 8192 to produce shorter but less accurate info */
integer total_length; /* The total length of the bytes written since the last check point */
integer options; /* unsigned options */
integer lastv; /* compression trick if
|synctex_options&4|>0. */
integer form_depth; /* pdf forms are an example of nested sheets */
struct _flags {
unsigned int option_read:1; /* Command line option read (in case of problem or at the end) */
unsigned int content_ready:1; /* Command line option read (in case of problem or at the end) */
unsigned int off:1; /* Definitely turn off synctex, corresponds to cli option -synctex=0 */
unsigned int no_gz:1; /* Whether zlib is used or not */
unsigned int not_void:1; /* Whether it really contains synchronization material */
unsigned int warn:1; /* One shot warning flag */
unsigned int quoted:1; /* Whether the input file name was quoted by tex or not, for example ""my input file.tex"", unused by XeTeX */
unsigned int output_p:1; /* Whether the output_directory is used */
unsigned int reserved:SYNCTEX_BITS_PER_BYTE*sizeof(int)-8; /* Align */
} flags;
} synctex_ctxt = {


To also record the column in the input file, you'd have to add another field to the data structure and adapt all the recorder functions to write this entry to the SyncTeX file. The next step would be to adapt the SyncTeX parser to pick up the column from the SyncTeX file. Then you'd have to edit the source code of your editor to make it aware that inverse search now also maps to the column. The hardest part is, that all of the above has to be done in a backwards compatible way, such that your editor can still read SyncTeX files from older version and that SyncTeX files written with the newer version can still be read by old parsers.



So bottomlined, it is theoretically possible to implement your idea but finding someone to practically do this is probably NP-hard.







share|improve this answer












share|improve this answer



share|improve this answer










answered 3 hours ago









Henri Menke

67.7k7150255




67.7k7150255












  • Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
    – KJO
    2 hours ago










  • @KJO Really? I can't find any column information in the SyncTeX file.
    – Henri Menke
    1 hour ago


















  • Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
    – KJO
    2 hours ago










  • @KJO Really? I can't find any column information in the SyncTeX file.
    – Henri Menke
    1 hour ago
















Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
– KJO
2 hours ago




Henri you are correct there is lots under the hood, however this comment is mainly for AbstractDissonance benefit the basic io interface has the following command structure --- Synctex view -i line:column:[page_hint:]input -o output [-d directory] [-x viewer-command] [-h before/offset:middle/after] --- where you can see basic usage is mainly the line and column number and in many viewers column is ignored as a problem so commonly simple viewers work just at line level. hence forward/inverse commands are just --- editor line filename
– KJO
2 hours ago












@KJO Really? I can't find any column information in the SyncTeX file.
– Henri Menke
1 hour ago




@KJO Really? I can't find any column information in the SyncTeX file.
– Henri Menke
1 hour ago


















draft saved

draft discarded




















































Thanks for contributing an answer to TeX - LaTeX Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f462482%2fmodifying-tex-syntex%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks