Referencing a previous question (List all installed packages and their versions from the command line) where the accepted solution to determining which packages have been installed on one's computer was to type the following in the command line:
mpm --list >test.txt
A snippet of the output file is reproduced below. Can someone please explain why some of these have 'i' and others have '-'?
- 00003 156041 lualatex-doc-de
- 00007 210562 lualatex-math
i 00039 507400 lualibs
- 00011 628914 luamesh
i 00008 251852 luamplib
i 00098 5295659 luaotfload
- 00006 41254 luapackageloader
- 00071 367828 luapersian
- 00006 278102 luasseq
This was done with Windows 10, MikTeX 2.9.6
--listshows all available packages and only those marked withiare actually installed. The first number seems to be the number of files in the package and the second is the size in bytes. – moewe May 30 '18 at 19:59mpmdocu at https://docs.miktex.org/manual/mpm.html mentions that the command to get a list of installed packages ismpm --list | grep ^i(but for that you needgrepon your Windows machine), usempm --list | findstr /b iinstead – moewe May 30 '18 at 20:12