Dear statalist,
iam interested in the "MarkDoc" package for quite a while now and looking for a way to obtain nicer tables than the ones generated by stata with the tab2 command and its output in the smcl log.
So i thought about converting the frequencies in a matrix and print the values to generate a tbl-table.
This is what ive accomplished so far:
When i run the code, MarkDoc tells me that the log file is off, although the output of the log query _all tells me otherwise.
What am i missing here?
Or is there another (simpler) way to get nice tables in MarkDoc?
iam interested in the "MarkDoc" package for quite a while now and looking for a way to obtain nicer tables than the ones generated by stata with the tab2 command and its output in the smcl log.
So i thought about converting the frequencies in a matrix and print the values to generate a tbl-table.
This is what ive accomplished so far:
Code:
global odir="youroutputdir" ****begin markdoc log************************************************************ cap erase $odir/markdoc.pdf cap erase $odir/markdoc.md cap erase $odir/markdoc.smcl cap erase $odir/marktable.do cap log close _all quietly log using $odir/markdoc.smcl, replace smcl name(markdocN) * We dont want the following in the log, so we turn it off //OFF mat matrix=(1,2\3,4) mat list matrix mat rownames matrix="row1" "row2" mat colnames matrix="col1" "col2" local cols=colsof(matrix) local rows=rowsof(matrix) local ++cols local ++rows quietly { file open mktbl using $odir/marktable.do, write replace forvalues row=1/`rows' { // every row of matrix forvalues col=1/`cols' { // every column of matrix local colmax=`cols'-1 // local for last col ->put \ in there<- if `row'==1 { // put rownames in the first row if `col'==1 { file write mktbl "tbl ( r , /// " _n // write tbl intro } if `col'<=`colmax' { // write info with comma file write mktbl "`: word `col' of `: colnames matrix'', " } if `col'==`cols' { // write info with backslash file write mktbl "`: word `col' of `: colnames matrix'' \ /// " _n } } if `row'>1 & `row'<`rows'{ // write info for every row but the last local rowd=`row'-1 local cold=`col'-1 if `col'==1 { // first col is rowname file write mktbl "`: word `rowd' of `: rownames matrix'', " } if `col'>1 & `col'<=`colmax' { // write info with comma file write mktbl " c`rowd'_`cold', " } if `col'==`cols' { // write info with backslash file write mktbl " c`rowd'_`cold' \ /// " _n } } if `row'>1 & `row'==`rows'{ // write info for the last row local rowd=`row'-1 local cold=`col'-1 if `col'==1 { // first col is rowname file write mktbl "`: word `rowd' of `: rownames matrix'', " } if `col'>1 & `col'<=`colmax' { // write info with comma file write mktbl " c`rowd'_`cold', " } if `col'==`cols' { // write info with backslash file write mktbl " c`rowd'_`cold' ) " _n } } } } file close mktbl } * to call the now ready dofile, we put the logging back on //ON log query _all /**/do $odir/marktable.do
What am i missing here?
Or is there another (simpler) way to get nice tables in MarkDoc?
Comment