I downloaded the smaller Tex version (because I don't have a lot of space on my computer) from http://www.tug.org/mactex/morepackages.html onto my mac. However, once everything is installed, I can't find any Tex application on my computer. Could someone please explain what I should do ?
PS When I ran tex --version on my terminal, it said that it is TeX 3.14159265 and when I ran which tex it said /Library/TeX/texbin/tex.
Asked
Active
Viewed 106 times
0
cool_guy
- 1
tex --versionon the console? – Skillmon Mar 28 '18 at 19:09tex --versionin your terminal to ensure that TeX is installed and in your path. – Skillmon Mar 28 '18 at 19:11tex --versionreturn anything useful (so nothing likecommand not found, but more likeTeX 3.14159265and some more lines)? It should not give you any path (that would have beenwhereis texifwhereisis available on a Mac). At this stage we don't need the path to the executable, we just need to make sure it is correctly installed. – Skillmon Mar 28 '18 at 19:21which tex– DG' Mar 28 '18 at 19:23example.tex:\documentclass{article}\usepackage{duckuments}\begin{document}\blindduck\end{document}. Then runpdflatex example.tex. – Skillmon Mar 28 '18 at 19:25<file-name>.tex. You can use which ever editor you like for that. Note however that there are specialized IDEs for TeX around which might ease the process. Then you run the appropriate TeX binary on that file in your console:pdflatex <file-name>.texwould be an example. Of course if you want to use XeLaTeX that would bexelatex <file-name>.tex. Most TeX IDEs however provide means to run TeX on the current file without using the console (and previewing it). – Skillmon Mar 28 '18 at 19:28