Repeat a phrase in Latex throughout document -


i set reference phrase in beginning of latex document, such can reference later in document , insert phrase.

purpose create cover letter template personalized each company. later can change reference phrase , latex rest, changing name of company throughout document.

such as,

\documentclass[]{letter}  \include{*company reference package*}  \ref{company xyz}{manufacturing , distribution company of americas, inc.} \begin{document}  dear \ref{company xyz}, have heard great work @ \ref{company xyz}. member of \ref{company xyz}  \end{document} 

you can use \newcommand, so:

\documentclass[]{letter}  \newcommand{\companyxyz}{manufacturing , distribution company of americas, inc.}  \begin{document}  dear \companyxyz, have heard great work @ \companyxyz. member of \companyxyz  \end{document} 

enter image description here


Comments

Popular posts from this blog

symfony - InvalidConfigurationException in SecurityExtension.php line 429: No authentication listener registered for firewall "secured_area" -

angular ui router - 10 digest iterations reached in angularjs when using $state.go -

javascript - Handling constructor related functions while testing with mocha and sinon -