I'm new to latex and really do not master its dialect and concepts...sorry inadvance.
I came to it because I need to create documents that will look different based on the targeted audience.
To be more concrete I want to generate procedure to send to customers. Depending on wether the customer have a windows or a linux environment, the procedure will obviously be different. I've seen that latex has some conditionals but I can't understand how to implement what I need. I was thinking I could somehow set a document metadata (e.g targetSystem: linux or windows) and later you a condition to choose which section should be included in the doc and which should not.
If I had to write it in code, it would be something like:
if (target == linux) { "some text" } else { "some other text" }
Expect I don't know what "target" could be in a latex document.
Any guidance?