vinibezzon Hi all, I've been trying to insert theta symbol in the graphic, but I could not. I'd like to know if it is possible to change font style in Topas graphic, or at least insert theta symbol. Thanks very much
johnsoevans It doesn't answer your question, but there's some info on alternative ways to produce publication quality plots at: http://topas.dur.ac.uk/topaswiki/doku.php?id=topics
siccasfoil Is there any example inp file on this? To get any separate files to plot in excel or Origin I suffered from different type of errors every time. Thanks johnsoevans:1328603653 wrote It doesn't answer your question, but there's some info on alternative ways to produce publication quality plots at: http://topas.dur.ac.uk/topaswiki/doku.php?id=topics
mfisch With xdd_out "Name.txt" load out_record out_fmt out_eqn { " %11.2f" = X; " %11.2f" = Yobs; " %11.2f" = Ycalc; " %11.2f\n" = Yobs-Ycalc; } You get the plot (X=2Theta, rest is obvious, chage Name.txt to pattern name) With phase_out "Name.txt" load out_record out_fmt out_eqn { " %3.0f" = H; " %3.0f" = K; " %3.0f" = L; " %3.0f" = M; " %11.5f" = D_spacing; " %11.5f\n" = 2 Rad Th; } You get a hkl list to generate hkl-ticks (add text above to each phase, change Name.txt to phase name)
siccasfoil Thanks, this way is much simpler for me. I edited the inp file to ... xdd a1.xy ... xdd_out "a1.txt" load out_record out_fmt out_eqn { " %11.2f" = X; " %11.2f" = Yobs; " %11.2f" = Ycalc; " %11.2f\n" = Yobs-Ycalc; } ... str ... phase_name b1 ... phase_out "b1.txt" load out_record out_fmt out_eqn { " %3.0f" = H; " %3.0f" = K; " %3.0f" = L; " %3.0f" = M; " %11.5f" = D_spacing; " %11.5f\n" = 2 Rad Th; } ... The problem is, b1.txt works well, but a1.txt file is empty inside. What is the problem here?